From ac9263642922463a82cb02f1ecd06c9536cc83e7 Mon Sep 17 00:00:00 2001 From: "munjal@chromium.org" Date: Thu, 26 Feb 2009 01:33:18 +0000 Subject: 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 --- chrome/common/chrome_switches.cc | 4 ++++ chrome/common/chrome_switches.h | 1 + 2 files changed, 5 insertions(+) (limited to 'chrome/common') 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[]; -- cgit v1.1