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

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

Issue 2808100: Code implements UI for downloading and burning Chrome OS images on SSD card a... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "googleurl/src/url_util.h" 8 #include "googleurl/src/url_util.h"
9 9
10 namespace chrome { 10 namespace chrome {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 const char kChromeUIAboutURL[] = "chrome://options/about"; 65 const char kChromeUIAboutURL[] = "chrome://options/about";
66 const char kChromeUIAppLauncherURL[] = "chrome://newtab/#mode=app-launcher"; 66 const char kChromeUIAppLauncherURL[] = "chrome://newtab/#mode=app-launcher";
67 const char kChromeUIBookmarksURL[] = "chrome://bookmarks/"; 67 const char kChromeUIBookmarksURL[] = "chrome://bookmarks/";
68 const char kChromeUIDevToolsURL[] = "chrome://devtools/"; 68 const char kChromeUIDevToolsURL[] = "chrome://devtools/";
69 const char kChromeUIDownloadsURL[] = "chrome://downloads/"; 69 const char kChromeUIDownloadsURL[] = "chrome://downloads/";
70 const char kChromeUIExtensionsURL[] = "chrome://extensions/"; 70 const char kChromeUIExtensionsURL[] = "chrome://extensions/";
71 const char kChromeUIFavIconURL[] = "chrome://favicon/"; 71 const char kChromeUIFavIconURL[] = "chrome://favicon/";
72 const char kChromeUIFileBrowseURL[] = "chrome://filebrowse/"; 72 const char kChromeUIFileBrowseURL[] = "chrome://filebrowse/";
73 const char kChromeUIHistoryURL[] = "chrome://history/"; 73 const char kChromeUIHistoryURL[] = "chrome://history/";
74 const char kChromeUIHistory2URL[] = "chrome://history2/"; 74 const char kChromeUIHistory2URL[] = "chrome://history2/";
75 const char kChromeUIImageBurnerURL[] = "chrome://imageburner/";
75 const char kChromeUIIPCURL[] = "chrome://about/ipc"; 76 const char kChromeUIIPCURL[] = "chrome://about/ipc";
76 const char kChromeUIMediaplayerURL[] = "chrome://mediaplayer/"; 77 const char kChromeUIMediaplayerURL[] = "chrome://mediaplayer/";
77 const char kChromeUINewTabURL[] = "chrome://newtab"; 78 const char kChromeUINewTabURL[] = "chrome://newtab";
78 const char kChromeUIOptionsURL[] = "chrome://options/"; 79 const char kChromeUIOptionsURL[] = "chrome://options/";
79 const char kChromeUIPluginsURL[] = "chrome://plugins/"; 80 const char kChromeUIPluginsURL[] = "chrome://plugins/";
80 const char kChromeUIPrintURL[] = "chrome://print/"; 81 const char kChromeUIPrintURL[] = "chrome://print/";
81 const char kChromeUIRegisterPageURL[] = "chrome://register/"; 82 const char kChromeUIRegisterPageURL[] = "chrome://register/";
82 const char kChromeUISlideshowURL[] = "chrome://slideshow/"; 83 const char kChromeUISlideshowURL[] = "chrome://slideshow/";
83 84
84 const char kChromeUIBookmarksHost[] = "bookmarks"; 85 const char kChromeUIBookmarksHost[] = "bookmarks";
85 const char kChromeUIDevToolsHost[] = "devtools"; 86 const char kChromeUIDevToolsHost[] = "devtools";
86 const char kChromeUIDialogHost[] = "dialog"; 87 const char kChromeUIDialogHost[] = "dialog";
87 const char kChromeUIDownloadsHost[] = "downloads"; 88 const char kChromeUIDownloadsHost[] = "downloads";
88 const char kChromeUIExtensionsHost[] = "extensions"; 89 const char kChromeUIExtensionsHost[] = "extensions";
89 const char kChromeUIFavIconHost[] = "favicon"; 90 const char kChromeUIFavIconHost[] = "favicon";
90 const char kChromeUIFileBrowseHost[] = "filebrowse"; 91 const char kChromeUIFileBrowseHost[] = "filebrowse";
91 const char kChromeUIHistoryHost[] = "history"; 92 const char kChromeUIHistoryHost[] = "history";
92 const char kChromeUIHistory2Host[] = "history2"; 93 const char kChromeUIHistory2Host[] = "history2";
94 const char kChromeUIImageBurnerHost[] = "imageburner";
93 const char kChromeUIInspectorHost[] = "inspector"; 95 const char kChromeUIInspectorHost[] = "inspector";
94 const char kChromeUIMediaplayerHost[] = "mediaplayer"; 96 const char kChromeUIMediaplayerHost[] = "mediaplayer";
95 const char kChromeUINetInternalsHost[] = "net-internals"; 97 const char kChromeUINetInternalsHost[] = "net-internals";
96 const char kChromeUINewTabHost[] = "newtab"; 98 const char kChromeUINewTabHost[] = "newtab";
97 const char kChromeUIOptionsHost[] = "options"; 99 const char kChromeUIOptionsHost[] = "options";
98 const char kChromeUIPluginsHost[] = "plugins"; 100 const char kChromeUIPluginsHost[] = "plugins";
99 const char kChromeUIPrintHost[] = "print"; 101 const char kChromeUIPrintHost[] = "print";
100 const char kChromeUIRegisterPageHost[] = "register"; 102 const char kChromeUIRegisterPageHost[] = "register";
101 const char kChromeUIRemotingHost[] = "remoting"; 103 const char kChromeUIRemotingHost[] = "remoting";
102 const char kChromeUIResourcesHost[] = "resources"; 104 const char kChromeUIResourcesHost[] = "resources";
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 140
139 // Prevent future modification of the standard schemes list. This is to 141 // Prevent future modification of the standard schemes list. This is to
140 // prevent accidental creation of data races in the program. AddStandardScheme 142 // prevent accidental creation of data races in the program. AddStandardScheme
141 // isn't threadsafe so must be called when GURL isn't used on any other 143 // isn't threadsafe so must be called when GURL isn't used on any other
142 // thread. This is really easy to mess up, so we say that all calls to 144 // thread. This is really easy to mess up, so we say that all calls to
143 // AddStandardScheme in Chrome must be inside this function. 145 // AddStandardScheme in Chrome must be inside this function.
144 url_util::LockStandardSchemes(); 146 url_util::LockStandardSchemes();
145 } 147 }
146 148
147 } // namespace chrome 149 } // namespace chrome
OLDNEW
« chrome/browser/chromeos/dom_ui/imageburner_ui.cc ('K') | « chrome/common/url_constants.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698