diff options
author | sail@chromium.org <sail@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-28 20:07:23 +0000 |
---|---|---|
committer | sail@chromium.org <sail@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-28 20:07:23 +0000 |
commit | c4f2272884d0408a9d976c3399159c94b930a9e1 (patch) | |
tree | ca9d6528817c892e2c2efaef412d27c7d5db5223 /chrome/common | |
parent | 3d70e115d497cfda0480325e81fe481620c13bd1 (diff) | |
download | chromium_src-c4f2272884d0408a9d976c3399159c94b930a9e1.zip chromium_src-c4f2272884d0408a9d976c3399159c94b930a9e1.tar.gz chromium_src-c4f2272884d0408a9d976c3399159c94b930a9e1.tar.bz2 |
Revert 90820 - Multi-Profiles: New Profile Setup UI
This change adds DOM UI to setup a new profile. When the user clicks Wrench Menu -> New Profile the following happens:
1 we create a new profile and give it a good default name and icon
2 we open a browser window and navigate it to chrome://newprofile
3 user customizes the name and icon if they wish and then click Create
4 we navigate to the new tab page where we optionally show the Sign In To Sync promo page
This change implements 3 and 4. Screenshots:
- http://www.dropmocks.com/mWxdW
BUG=None
TEST=Navigated to chrome://newprofile and verified that things looked ok
Review URL: http://codereview.chromium.org/7256002
TBR=sail@chromium.org
Review URL: http://codereview.chromium.org/7275026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90827 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/url_constants.cc | 2 | ||||
-rw-r--r-- | chrome/common/url_constants.h | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/chrome/common/url_constants.cc b/chrome/common/url_constants.cc index abb44c7b..44aef6d 100644 --- a/chrome/common/url_constants.cc +++ b/chrome/common/url_constants.cc @@ -79,7 +79,6 @@ const char kChromeUIKillURL[] = "chrome://kill/"; const char kChromeUIMemoryRedirectURL[] = "chrome://memory-redirect/"; const char kChromeUINetworkViewCacheURL[] = "chrome://view-http-cache/"; const char kChromeUINewTabURL[] = "chrome://newtab/"; -const char kChromeUINewProfile[] = "chrome://newprofile/"; const char kChromeUIPluginsURL[] = "chrome://plugins/"; const char kChromeUIPrintURL[] = "chrome://print/"; const char kChromeUISessionsURL[] = "chrome://sessions/"; @@ -156,7 +155,6 @@ const char kChromeUIMemoryHost[] = "memory"; const char kChromeUIMemoryRedirectHost[] = "memory-redirect"; const char kChromeUINetInternalsHost[] = "net-internals"; const char kChromeUINetworkViewCacheHost[] = "view-http-cache"; -const char kChromeUINewProfileHost[] = "newprofile"; const char kChromeUINewTabHost[] = "newtab"; const char kChromeUIPluginsHost[] = "plugins"; const char kChromeUIPrintHost[] = "print"; diff --git a/chrome/common/url_constants.h b/chrome/common/url_constants.h index c10711c..9a954a9 100644 --- a/chrome/common/url_constants.h +++ b/chrome/common/url_constants.h @@ -71,7 +71,6 @@ extern const char kChromeUIKeyboardURL[]; extern const char kChromeUIKillURL[]; extern const char kChromeUIMemoryRedirectURL[]; extern const char kChromeUINetworkViewCacheURL[]; -extern const char kChromeUINewProfile[]; extern const char kChromeUINewTabURL[]; extern const char kChromeUIPluginsURL[]; extern const char kChromeUIPrintURL[]; @@ -147,7 +146,6 @@ extern const char kChromeUIMemoryHost[]; extern const char kChromeUIMemoryRedirectHost[]; extern const char kChromeUINetInternalsHost[]; extern const char kChromeUINetworkViewCacheHost[]; -extern const char kChromeUINewProfileHost[]; extern const char kChromeUINewTabHost[]; extern const char kChromeUIPluginsHost[]; extern const char kChromeUIPrintHost[]; |