diff options
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 3 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 5a1ab4c..4d076f9 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -112,6 +112,9 @@ const wchar_t kTestSandbox[] = L"test-sandbox"; // for all of its state. const wchar_t kUserDataDir[] = L"user-data-dir"; +// Specifies the path to the user data folder for the parent profile. +const wchar_t kParentProfile[] = L"parent-profile"; + // Specifies that the associated value should be launched in "application" mode. const wchar_t kApp[] = L"app"; diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index ddf3f6b..7a75cb5 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -39,6 +39,7 @@ extern const wchar_t kSafePlugins[]; extern const wchar_t kTrustedPlugins[]; extern const wchar_t kTestSandbox[]; extern const wchar_t kUserDataDir[]; +extern const wchar_t kParentProfile[]; extern const wchar_t kApp[]; extern const wchar_t kAppUploadFile[]; extern const wchar_t kDomAutomationController[]; |