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

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

Issue 8889041: first cut at uber page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: mac compile Created 9 years 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') | content/browser/webui/web_ui.h » ('j') | 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/common/url_constants.h" 5 #include "chrome/common/url_constants.h"
6 6
7 #include "googleurl/src/url_util.h" 7 #include "googleurl/src/url_util.h"
8 8
9 namespace { 9 namespace {
10 const char* kSavableSchemes[] = { 10 const char* kSavableSchemes[] = {
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 const char kChromeUISyncHost[] = "sync"; 173 const char kChromeUISyncHost[] = "sync";
174 const char kChromeUISyncInternalsHost[] = "sync-internals"; 174 const char kChromeUISyncInternalsHost[] = "sync-internals";
175 const char kChromeUISyncPromoHost[] = "syncpromo"; 175 const char kChromeUISyncPromoHost[] = "syncpromo";
176 const char kChromeUISyncResourcesHost[] = "syncresources"; 176 const char kChromeUISyncResourcesHost[] = "syncresources";
177 const char kChromeUITaskManagerHost[] = "tasks"; 177 const char kChromeUITaskManagerHost[] = "tasks";
178 const char kChromeUITCMallocHost[] = "tcmalloc"; 178 const char kChromeUITCMallocHost[] = "tcmalloc";
179 const char kChromeUITermsHost[] = "terms"; 179 const char kChromeUITermsHost[] = "terms";
180 const char kChromeUIThumbnailHost[] = "thumb"; 180 const char kChromeUIThumbnailHost[] = "thumb";
181 const char kChromeUITouchIconHost[] = "touch-icon"; 181 const char kChromeUITouchIconHost[] = "touch-icon";
182 const char kChromeUITracingHost[] = "tracing"; 182 const char kChromeUITracingHost[] = "tracing";
183 const char kChromeUIUberHost[] = "chrome";
183 const char kChromeUIVersionHost[] = "version"; 184 const char kChromeUIVersionHost[] = "version";
184 const char kChromeUIWorkersHost[] = "workers"; 185 const char kChromeUIWorkersHost[] = "workers";
185 186
186 const char kChromeUIScreenshotPath[] = "screenshots"; 187 const char kChromeUIScreenshotPath[] = "screenshots";
187 const char kChromeUIThemePath[] = "theme"; 188 const char kChromeUIThemePath[] = "theme";
188 189
189 #if defined(OS_LINUX) || defined(OS_OPENBSD) 190 #if defined(OS_LINUX) || defined(OS_OPENBSD)
190 const char kChromeUILinuxProxyConfigHost[] = "linux-proxy-config"; 191 const char kChromeUILinuxProxyConfigHost[] = "linux-proxy-config";
191 const char kChromeUISandboxHost[] = "sandbox"; 192 const char kChromeUISandboxHost[] = "sandbox";
192 #endif 193 #endif
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 url_util::AddStandardScheme(kExtensionScheme); 367 url_util::AddStandardScheme(kExtensionScheme);
367 #if defined(OS_CHROMEOS) 368 #if defined(OS_CHROMEOS)
368 url_util::AddStandardScheme(kCrosScheme); 369 url_util::AddStandardScheme(kCrosScheme);
369 #endif 370 #endif
370 371
371 // This call will also lock the list of standard schemes. 372 // This call will also lock the list of standard schemes.
372 RegisterContentSchemes(kSavableSchemes); 373 RegisterContentSchemes(kSavableSchemes);
373 } 374 }
374 375
375 } // namespace chrome 376 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/common/url_constants.h ('k') | content/browser/webui/web_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698