Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(105)

Side by Side Diff: chrome/common/url_constants.cc

Issue 661019: Add command line option to use a tabbed bookmark manager (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/url_constants.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stdlib.h> 5 #include <stdlib.h>
6 6
7 #include "chrome/common/url_constants.h" 7 #include "chrome/common/url_constants.h"
8 8
9 namespace chrome { 9 namespace chrome {
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 const char kAboutCreditsURL[] = "about:credits"; 42 const char kAboutCreditsURL[] = "about:credits";
43 const char kAboutHangURL[] = "about:hang"; 43 const char kAboutHangURL[] = "about:hang";
44 const char kAboutMemoryURL[] = "about:memory"; 44 const char kAboutMemoryURL[] = "about:memory";
45 const char kAboutShorthangURL[] = "about:shorthang"; 45 const char kAboutShorthangURL[] = "about:shorthang";
46 const char kAboutTermsURL[] = "about:terms"; 46 const char kAboutTermsURL[] = "about:terms";
47 47
48 // Use an obfuscated URL to make this nondiscoverable, we only want this 48 // Use an obfuscated URL to make this nondiscoverable, we only want this
49 // to be used for testing. 49 // to be used for testing.
50 const char kAboutBrowserCrash[] = "about:inducebrowsercrashforrealz"; 50 const char kAboutBrowserCrash[] = "about:inducebrowsercrashforrealz";
51 51
52 const char kChromeUIBookmarksURL[] = "chrome://bookmarks/";
52 const char kChromeUIDevToolsURL[] = "chrome://devtools/"; 53 const char kChromeUIDevToolsURL[] = "chrome://devtools/";
53 const char kChromeUIDownloadsURL[] = "chrome://downloads/"; 54 const char kChromeUIDownloadsURL[] = "chrome://downloads/";
54 const char kChromeUIExtensionsURL[] = "chrome://extensions/"; 55 const char kChromeUIExtensionsURL[] = "chrome://extensions/";
55 const char kChromeUIHistoryURL[] = "chrome://history/"; 56 const char kChromeUIHistoryURL[] = "chrome://history/";
56 const char kChromeUIFileBrowseURL[] = "chrome://filebrowse/"; 57 const char kChromeUIFileBrowseURL[] = "chrome://filebrowse/";
57 const char kChromeUIIPCURL[] = "chrome://about/ipc"; 58 const char kChromeUIIPCURL[] = "chrome://about/ipc";
58 const char kChromeUINetworkURL[] = "chrome://about/network"; 59 const char kChromeUINetworkURL[] = "chrome://about/network";
59 const char kChromeUINewTabURL[] = "chrome://newtab"; 60 const char kChromeUINewTabURL[] = "chrome://newtab";
60 61
62 const char kChromeUIBookmarksHost[] = "bookmarks";
61 const char kChromeUIDevToolsHost[] = "devtools"; 63 const char kChromeUIDevToolsHost[] = "devtools";
62 const char kChromeUIDialogHost[] = "dialog"; 64 const char kChromeUIDialogHost[] = "dialog";
63 const char kChromeUIDownloadsHost[] = "downloads"; 65 const char kChromeUIDownloadsHost[] = "downloads";
64 const char kChromeUIExtensionsHost[] = "extensions"; 66 const char kChromeUIExtensionsHost[] = "extensions";
65 const char kChromeUIFavIconPath[] = "favicon"; 67 const char kChromeUIFavIconPath[] = "favicon";
66 const char kChromeUIHistoryHost[] = "history"; 68 const char kChromeUIHistoryHost[] = "history";
67 const char kChromeUIFileBrowseHost[] = "filebrowse"; 69 const char kChromeUIFileBrowseHost[] = "filebrowse";
68 const char kChromeUIInspectorHost[] = "inspector"; 70 const char kChromeUIInspectorHost[] = "inspector";
69 const char kChromeUINewTabHost[] = "newtab"; 71 const char kChromeUINewTabHost[] = "newtab";
70 const char kChromeUIThumbnailPath[] = "thumb"; 72 const char kChromeUIThumbnailPath[] = "thumb";
71 const char kChromeUIThemePath[] = "theme"; 73 const char kChromeUIThemePath[] = "theme";
72 74
73 const char kSyncResourcesHost[] = "syncresources"; 75 const char kSyncResourcesHost[] = "syncresources";
74 const char kSyncGaiaLoginPath[] = "gaialogin"; 76 const char kSyncGaiaLoginPath[] = "gaialogin";
75 const char kSyncMergeAndSyncPath[] = "mergeandsync"; 77 const char kSyncMergeAndSyncPath[] = "mergeandsync";
76 const char kSyncThrobberPath[] = "throbber.png"; 78 const char kSyncThrobberPath[] = "throbber.png";
77 const char kSyncSetupFlowPath[] = "setup"; 79 const char kSyncSetupFlowPath[] = "setup";
78 const char kSyncSetupDonePath[] = "setupdone"; 80 const char kSyncSetupDonePath[] = "setupdone";
79 81
80 const char kNetworkViewInternalsURL[] = "chrome://net-internals/"; 82 const char kNetworkViewInternalsURL[] = "chrome://net-internals/";
81 const char kNetworkViewCacheURL[] = "chrome://net-internals/view-cache"; 83 const char kNetworkViewCacheURL[] = "chrome://net-internals/view-cache";
82 84
83 } // namespace chrome 85 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/common/url_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698