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

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

Issue 8986005: Reland r114898: Add TabModalConfirmDialogDelegate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix and cleanup 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
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 // Contains constants for known URLs and portions thereof. 5 // Contains constants for known URLs and portions thereof.
6 6
7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_
8 #define CHROME_COMMON_URL_CONSTANTS_H_ 8 #define CHROME_COMMON_URL_CONSTANTS_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 extern const char kChromeUIUserImageURL[]; 91 extern const char kChromeUIUserImageURL[];
92 #endif 92 #endif
93 93
94 #if defined(FILE_MANAGER_EXTENSION) 94 #if defined(FILE_MANAGER_EXTENSION)
95 extern const char kChromeUIFileManagerURL[]; 95 extern const char kChromeUIFileManagerURL[];
96 #endif 96 #endif
97 97
98 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) 98 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA)
99 extern const char kChromeUICollectedCookiesURL[]; 99 extern const char kChromeUICollectedCookiesURL[];
100 extern const char kChromeUIHttpAuthURL[]; 100 extern const char kChromeUIHttpAuthURL[];
101 extern const char kChromeUIRepostFormWarningURL[]; 101 extern const char kChromeUITabModalConfirmDialogURL[];
102 #endif 102 #endif
103 103
104 #if defined(USE_AURA) 104 #if defined(USE_AURA)
105 extern const char kChromeUIAppListURL[]; 105 extern const char kChromeUIAppListURL[];
106 #endif 106 #endif
107 107
108 // chrome components of URLs. Should be kept in sync with the full URLs above. 108 // chrome components of URLs. Should be kept in sync with the full URLs above.
109 extern const char kChromeUIAboutHost[]; 109 extern const char kChromeUIAboutHost[];
110 extern const char kChromeUIAppCacheInternalsHost[]; 110 extern const char kChromeUIAppCacheInternalsHost[];
111 extern const char kChromeUIBlankHost[]; 111 extern const char kChromeUIBlankHost[];
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 extern const char kOemEulaURLPath[]; 220 extern const char kOemEulaURLPath[];
221 #endif 221 #endif
222 222
223 #if defined(FILE_MANAGER_EXTENSION) 223 #if defined(FILE_MANAGER_EXTENSION)
224 extern const char kChromeUIFileManagerHost[]; 224 extern const char kChromeUIFileManagerHost[];
225 #endif 225 #endif
226 226
227 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA) 227 #if (defined(OS_LINUX) && defined(TOOLKIT_VIEWS)) || defined(USE_AURA)
228 extern const char kChromeUICollectedCookiesHost[]; 228 extern const char kChromeUICollectedCookiesHost[];
229 extern const char kChromeUIHttpAuthHost[]; 229 extern const char kChromeUIHttpAuthHost[];
230 extern const char kChromeUIRepostFormWarningHost[]; 230 extern const char kChromeUITabModalConfirmDialogHost[];
231 #endif 231 #endif
232 232
233 #if defined(USE_AURA) 233 #if defined(USE_AURA)
234 extern const char kChromeUIAppListHost[]; 234 extern const char kChromeUIAppListHost[];
235 #endif 235 #endif
236 236
237 // Options sub-pages. 237 // Options sub-pages.
238 extern const char kAdvancedOptionsSubPage[]; 238 extern const char kAdvancedOptionsSubPage[];
239 extern const char kAutofillSubPage[]; 239 extern const char kAutofillSubPage[];
240 extern const char kBrowserOptionsSubPage[]; 240 extern const char kBrowserOptionsSubPage[];
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 void RegisterChromeSchemes(); 330 void RegisterChromeSchemes();
331 331
332 #if defined(OS_CHROMEOS) 332 #if defined(OS_CHROMEOS)
333 // "Learn more" URL for the Cloud Print section under Options. 333 // "Learn more" URL for the Cloud Print section under Options.
334 extern const char kCloudPrintLearnMoreURL[]; 334 extern const char kCloudPrintLearnMoreURL[];
335 #endif 335 #endif
336 336
337 } // namespace chrome 337 } // namespace chrome
338 338
339 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 339 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698