From a0784bd0386f9b090fa7a01a253b9af780e4811a Mon Sep 17 00:00:00 2001 From: Paul Betts Date: Thu, 9 Jul 2015 15:57:17 -0700 Subject: [PATCH] Add a new renderer switch to pass down the app model ID --- atom/common/options_switches.cc | 3 +++ atom/common/options_switches.h | 2 ++ 2 files changed, 5 insertions(+) diff --git a/atom/common/options_switches.cc b/atom/common/options_switches.cc index 71469b9601b6..8f457116ec3a 100644 --- a/atom/common/options_switches.cc +++ b/atom/common/options_switches.cc @@ -107,6 +107,9 @@ const char kDisableHttpCache[] = "disable-http-cache"; // Register schemes to standard. const char kRegisterStandardSchemes[] = "register-standard-schemes"; +// The browser process app model ID +const char kAppUserModelId[] = "app-user-model-id"; + } // namespace switches } // namespace atom diff --git a/atom/common/options_switches.h b/atom/common/options_switches.h index fc25208a60ac..2dd48ee32a1a 100644 --- a/atom/common/options_switches.h +++ b/atom/common/options_switches.h @@ -58,6 +58,8 @@ extern const char kPageVisibility[]; extern const char kDisableHttpCache[]; extern const char kRegisterStandardSchemes[]; +extern const char kAppUserModelId[]; + } // namespace switches } // namespace atom