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

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

Issue 4226001: Implement DOM UI version of keyboard overlay. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 10 years, 1 month 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 1
2 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 2 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file. 4 // found in the LICENSE file.
5 5
6 #include <stdlib.h> 6 #include <stdlib.h>
7 7
8 #include "chrome/common/url_constants.h" 8 #include "chrome/common/url_constants.h"
9 #include "googleurl/src/url_util.h" 9 #include "googleurl/src/url_util.h"
10 10
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 const char kChromeUIKeyboardURL[] = "chrome://keyboard/"; 86 const char kChromeUIKeyboardURL[] = "chrome://keyboard/";
87 const char kChromeUINewTabURL[] = "chrome://newtab"; 87 const char kChromeUINewTabURL[] = "chrome://newtab";
88 const char kChromeUIPluginsURL[] = "chrome://plugins/"; 88 const char kChromeUIPluginsURL[] = "chrome://plugins/";
89 const char kChromeUIPrintURL[] = "chrome://print/"; 89 const char kChromeUIPrintURL[] = "chrome://print/";
90 const char kChromeUISettingsURL[] = "chrome://settings/"; 90 const char kChromeUISettingsURL[] = "chrome://settings/";
91 const char kChromeUITextfieldsURL[] = "chrome://textfields/"; 91 const char kChromeUITextfieldsURL[] = "chrome://textfields/";
92 92
93 #if defined(OS_CHROMEOS) 93 #if defined(OS_CHROMEOS)
94 const char kChromeUIFileBrowseURL[] = "chrome://filebrowse/"; 94 const char kChromeUIFileBrowseURL[] = "chrome://filebrowse/";
95 const char kChromeUIImageBurnerURL[] = "chrome://imageburner/"; 95 const char kChromeUIImageBurnerURL[] = "chrome://imageburner/";
96 const char kChromeUIKeyboardOverlayURL[] = "chrome://keyboardoverlay/";
96 const char kChromeUIMediaplayerURL[] = "chrome://mediaplayer/"; 97 const char kChromeUIMediaplayerURL[] = "chrome://mediaplayer/";
97 const char kChromeUIMobileSetupURL[] = "chrome://mobilesetup/"; 98 const char kChromeUIMobileSetupURL[] = "chrome://mobilesetup/";
98 const char kChromeUIRegisterPageURL[] = "chrome://register/"; 99 const char kChromeUIRegisterPageURL[] = "chrome://register/";
99 const char kChromeUISlideshowURL[] = "chrome://slideshow/"; 100 const char kChromeUISlideshowURL[] = "chrome://slideshow/";
100 const char kChromeUISystemInfoURL[] = "chrome://system/"; 101 const char kChromeUISystemInfoURL[] = "chrome://system/";
101 #endif 102 #endif
102 103
103 // Keep this list sorted please. 104 // Keep this list sorted please.
104 const char kChromeUIBookmarksHost[] = "bookmarks"; 105 const char kChromeUIBookmarksHost[] = "bookmarks";
105 const char kChromeUIBugReportHost[] = "bugreport"; 106 const char kChromeUIBugReportHost[] = "bugreport";
(...skipping 17 matching lines...) Expand all
123 const char kChromeUIScreenshotPath[] = "screenshots"; 124 const char kChromeUIScreenshotPath[] = "screenshots";
124 const char kChromeUISettingsHost[] = "settings"; 125 const char kChromeUISettingsHost[] = "settings";
125 const char kChromeUISyncResourcesHost[] = "syncresources"; 126 const char kChromeUISyncResourcesHost[] = "syncresources";
126 const char kChromeUITextfieldsHost[] = "textfields"; 127 const char kChromeUITextfieldsHost[] = "textfields";
127 const char kChromeUIThemePath[] = "theme"; 128 const char kChromeUIThemePath[] = "theme";
128 const char kChromeUIThumbnailPath[] = "thumb"; 129 const char kChromeUIThumbnailPath[] = "thumb";
129 130
130 #if defined(OS_CHROMEOS) 131 #if defined(OS_CHROMEOS)
131 const char kChromeUIFileBrowseHost[] = "filebrowse"; 132 const char kChromeUIFileBrowseHost[] = "filebrowse";
132 const char kChromeUIImageBurnerHost[] = "imageburner"; 133 const char kChromeUIImageBurnerHost[] = "imageburner";
134 const char kChromeUIKeyboardOverlayHost[] = "keyboardoverlay";
133 const char kChromeUIMediaplayerHost[] = "mediaplayer"; 135 const char kChromeUIMediaplayerHost[] = "mediaplayer";
134 const char kChromeUIMobileSetupHost[] = "mobilesetup"; 136 const char kChromeUIMobileSetupHost[] = "mobilesetup";
135 const char kChromeUIRegisterPageHost[] = "register"; 137 const char kChromeUIRegisterPageHost[] = "register";
136 const char kChromeUISlideshowHost[] = "slideshow"; 138 const char kChromeUISlideshowHost[] = "slideshow";
137 const char kChromeUISystemInfoHost[] = "system"; 139 const char kChromeUISystemInfoHost[] = "system";
138 const char kChromeUIMenu[] = "menu"; 140 const char kChromeUIMenu[] = "menu";
139 const char kChromeUIWrenchMenu[] = "wrench-menu"; 141 const char kChromeUIWrenchMenu[] = "wrench-menu";
140 const char kChromeUINetworkMenu[] = "network-menu"; 142 const char kChromeUINetworkMenu[] = "network-menu";
141 #endif 143 #endif
142 144
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 185
184 // Prevent future modification of the standard schemes list. This is to 186 // Prevent future modification of the standard schemes list. This is to
185 // prevent accidental creation of data races in the program. AddStandardScheme 187 // prevent accidental creation of data races in the program. AddStandardScheme
186 // isn't threadsafe so must be called when GURL isn't used on any other 188 // isn't threadsafe so must be called when GURL isn't used on any other
187 // thread. This is really easy to mess up, so we say that all calls to 189 // thread. This is really easy to mess up, so we say that all calls to
188 // AddStandardScheme in Chrome must be inside this function. 190 // AddStandardScheme in Chrome must be inside this function.
189 url_util::LockStandardSchemes(); 191 url_util::LockStandardSchemes();
190 } 192 }
191 193
192 } // namespace chrome 194 } // 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