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

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

Issue 2252063002: Adding client code for new desktop First Run Experience. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing spacing nits before review Created 4 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 9
10 #include <stddef.h> 10 #include <stddef.h>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 extern const char kChromeUISupervisedUserPassphrasePageURL[]; 79 extern const char kChromeUISupervisedUserPassphrasePageURL[];
80 extern const char kChromeUISyncConfirmationURL[]; 80 extern const char kChromeUISyncConfirmationURL[];
81 extern const char kChromeUITermsURL[]; 81 extern const char kChromeUITermsURL[];
82 extern const char kChromeUIThemeURL[]; 82 extern const char kChromeUIThemeURL[];
83 extern const char kChromeUIThumbnailURL[]; 83 extern const char kChromeUIThumbnailURL[];
84 extern const char kChromeUIThumbnailListURL[]; 84 extern const char kChromeUIThumbnailListURL[];
85 extern const char kChromeUIUberFrameURL[]; 85 extern const char kChromeUIUberFrameURL[];
86 extern const char kChromeUIUserActionsURL[]; 86 extern const char kChromeUIUserActionsURL[];
87 extern const char kChromeUIUserManagerURL[]; 87 extern const char kChromeUIUserManagerURL[];
88 extern const char kChromeUIVersionURL[]; 88 extern const char kChromeUIVersionURL[];
89 extern const char kChromeUIWelcomeURL[];
89 90
90 #if BUILDFLAG(ANDROID_JAVA_UI) 91 #if BUILDFLAG(ANDROID_JAVA_UI)
91 extern const char kChromeUIContextualSearchPromoURL[]; 92 extern const char kChromeUIContextualSearchPromoURL[];
92 extern const char kChromeUINativeScheme[]; 93 extern const char kChromeUINativeScheme[];
93 extern const char kChromeUINativeNewTabURL[]; 94 extern const char kChromeUINativeNewTabURL[];
94 extern const char kChromeUINativeBookmarksURL[]; 95 extern const char kChromeUINativeBookmarksURL[];
95 extern const char kChromeUINativePhysicalWebURL[]; 96 extern const char kChromeUINativePhysicalWebURL[];
96 extern const char kChromeUINativeRecentTabsURL[]; 97 extern const char kChromeUINativeRecentTabsURL[];
97 #endif 98 #endif
98 99
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 extern const char kChromeUIThumbnailHost[]; 230 extern const char kChromeUIThumbnailHost[];
230 extern const char kChromeUIThumbnailHost2[]; 231 extern const char kChromeUIThumbnailHost2[];
231 extern const char kChromeUIThumbnailListHost[]; 232 extern const char kChromeUIThumbnailListHost[];
232 extern const char kChromeUITouchIconHost[]; 233 extern const char kChromeUITouchIconHost[];
233 extern const char kChromeUITranslateInternalsHost[]; 234 extern const char kChromeUITranslateInternalsHost[];
234 extern const char kChromeUIUberFrameHost[]; 235 extern const char kChromeUIUberFrameHost[];
235 extern const char kChromeUIUberHost[]; 236 extern const char kChromeUIUberHost[];
236 extern const char kChromeUIUsbInternalsHost[]; 237 extern const char kChromeUIUsbInternalsHost[];
237 extern const char kChromeUIUserActionsHost[]; 238 extern const char kChromeUIUserActionsHost[];
238 extern const char kChromeUIVersionHost[]; 239 extern const char kChromeUIVersionHost[];
240 extern const char kChromeUIWelcomeHost[];
239 extern const char kChromeUIWorkersHost[]; 241 extern const char kChromeUIWorkersHost[];
240 242
241 extern const char kChromeUIThemePath[]; 243 extern const char kChromeUIThemePath[];
242 244
243 #if defined(ENABLE_PRINT_PREVIEW) 245 #if defined(ENABLE_PRINT_PREVIEW)
244 extern const char kChromeUIPrintHost[]; 246 extern const char kChromeUIPrintHost[];
245 #endif // ENABLE_PRINT_PREVIEW 247 #endif // ENABLE_PRINT_PREVIEW
246 248
247 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) 249 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID)
248 extern const char kChromeUILinuxProxyConfigHost[]; 250 extern const char kChromeUILinuxProxyConfigHost[];
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 extern const char kChooserUsbOverviewURL[]; 594 extern const char kChooserUsbOverviewURL[];
593 595
594 #if defined(OS_CHROMEOS) 596 #if defined(OS_CHROMEOS)
595 // The URL for EOL notification 597 // The URL for EOL notification
596 extern const char kEolNotificationURL[]; 598 extern const char kEolNotificationURL[];
597 #endif 599 #endif
598 600
599 } // namespace chrome 601 } // namespace chrome
600 602
601 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 603 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698