diff options
author | munjal@chromium.org <munjal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-26 01:33:18 +0000 |
---|---|---|
committer | munjal@chromium.org <munjal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-26 01:33:18 +0000 |
commit | ac9263642922463a82cb02f1ecd06c9536cc83e7 (patch) | |
tree | 8cf8349ee13e5f15f2c50d4437d8d7ecdb9a6752 /chrome/common | |
parent | 0191afb579f359623cf31a956ec8d602057ffdcb (diff) | |
download | chromium_src-ac9263642922463a82cb02f1ecd06c9536cc83e7.zip chromium_src-ac9263642922463a82cb02f1ecd06c9536cc83e7.tar.gz chromium_src-ac9263642922463a82cb02f1ecd06c9536cc83e7.tar.bz2 |
Hide profiles behind a command-line switch since the user-data-dir stuff
wouldn't work on Mac.
See bug http://code.google.com/p/chromium/issues/detail?id=7987
Review URL: http://codereview.chromium.org/28093
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10432 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 4 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 43baf87..a33043a 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -120,6 +120,10 @@ const wchar_t kPluginDataDir[] = L"plugin-data-dir"; // UserDatadir. const wchar_t kDiskCacheDir[] = L"disk-cache-dir"; +// Whether the multiple profiles feature based on the user-data-dir flag is +// enabled or not. +const wchar_t kEnableUserDataDirProfiles[] = L"enable-udd-profiles"; + // Specifies the path to the user data folder for the parent profile. const wchar_t kParentProfile[] = L"parent-profile"; diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index f3c76916..0df8dbd 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -41,6 +41,7 @@ extern const wchar_t kTestSandbox[]; extern const wchar_t kUserDataDir[]; extern const wchar_t kPluginDataDir[]; extern const wchar_t kDiskCacheDir[]; +extern const wchar_t kEnableUserDataDirProfiles[]; extern const wchar_t kParentProfile[]; extern const wchar_t kApp[]; extern const wchar_t kAppUploadFile[]; |