From f253006b157f9c917fba21a7312290aaa2e889e7 Mon Sep 17 00:00:00 2001 From: "munjal@chromium.org" Date: Wed, 3 Dec 2008 23:52:03 +0000 Subject: Chromium-MultiProfile-Prototype Summary ======= Implement a prototype of multiple profiles in Chrome by utilizing the functionality of user-data-dir command line flag that already exists. A profile in this case is an umbrella for all user data including cookies, history, bookmarks, settings, etc. Each profile gives the user a separation of all these data elements. User Interface ============== - Wrench > "New window in profile" menu item, with sub-menu items. This new menu item has sub menu items for each existing profile, for up to 9 profiles, and one more sub menu item to launch a window in a new profile. The 9 sub-menu items also have the accelerators like CTRL + SHIFT + 1, CTRL + SHIFT + 2, etc. If there are more than 9 profiles, we will also show an extra sub-menu item, "Other...". - New Profile dialog box This dialog box is shown to the use when (s)he clicks Wrench > New window in profile > . It lets the user specify a profile name, and also shows a checkbox to create a desktop shortcut to launch Chrome in that profile. - Choose profile dialog box This dialog box lets the user select a profile from a drop down to open a new window in. It also has an item in the drop down, selecting which will show the new profile dialog box mentioned above. CTRL + M shortcut also launches this dialog box. Code Organization ================= chrome\browser\user_data_dir_profile_manager.h/.cc: This class provides an abstraction of profiles on top of the user data dir command line flag. chrome\browser\views\user_data_dir_new_profile_dialog.h/.cc New profile dialog box code. chrome\browser\views\user_data_dir_profiles_dialog.h/.cc Choose profile dialog box code. Review URL: http://codereview.chromium.org/12895 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6333 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/app/resources/locale_settings_cs.rc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'chrome/app/resources/locale_settings_cs.rc') diff --git a/chrome/app/resources/locale_settings_cs.rc b/chrome/app/resources/locale_settings_cs.rc index da34bae..53419e9 100644 --- a/chrome/app/resources/locale_settings_cs.rc +++ b/chrome/app/resources/locale_settings_cs.rc @@ -63,6 +63,9 @@ BEGIN IDS_BOOKMARK_MANAGER_DIALOG_WIDTH_CHARS "150" IDS_BOOKMARK_MANAGER_DIALOG_HEIGHT_LINES "40" IDS_DOWNLOAD_BIG_PROGRESS_SIZE "52" + IDS_SELECT_PROFILE_DIALOG_WIDTH_CHARS "60" + IDS_SELECT_PROFILE_DIALOG_HEIGHT_LINES "5" + IDS_NEW_PROFILE_DIALOG_WIDTH_CHARS "60" END #if defined(GOOGLE_CHROME_BUILD) -- cgit v1.1