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

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: Rebase Created 4 years, 3 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
« no previous file with comments | « chrome/browser/ui/webui/welcome_ui.cc ('k') | chrome/common/url_constants.cc » ('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) 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 extern const char kChromeUIThumbnailHost[]; 229 extern const char kChromeUIThumbnailHost[];
229 extern const char kChromeUIThumbnailHost2[]; 230 extern const char kChromeUIThumbnailHost2[];
230 extern const char kChromeUIThumbnailListHost[]; 231 extern const char kChromeUIThumbnailListHost[];
231 extern const char kChromeUITouchIconHost[]; 232 extern const char kChromeUITouchIconHost[];
232 extern const char kChromeUITranslateInternalsHost[]; 233 extern const char kChromeUITranslateInternalsHost[];
233 extern const char kChromeUIUberFrameHost[]; 234 extern const char kChromeUIUberFrameHost[];
234 extern const char kChromeUIUberHost[]; 235 extern const char kChromeUIUberHost[];
235 extern const char kChromeUIUsbInternalsHost[]; 236 extern const char kChromeUIUsbInternalsHost[];
236 extern const char kChromeUIUserActionsHost[]; 237 extern const char kChromeUIUserActionsHost[];
237 extern const char kChromeUIVersionHost[]; 238 extern const char kChromeUIVersionHost[];
239 extern const char kChromeUIWelcomeHost[];
238 extern const char kChromeUIWorkersHost[]; 240 extern const char kChromeUIWorkersHost[];
239 241
240 #if defined(ENABLE_PRINT_PREVIEW) 242 #if defined(ENABLE_PRINT_PREVIEW)
241 extern const char kChromeUIPrintHost[]; 243 extern const char kChromeUIPrintHost[];
242 #endif // ENABLE_PRINT_PREVIEW 244 #endif // ENABLE_PRINT_PREVIEW
243 245
244 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) 246 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID)
245 extern const char kChromeUILinuxProxyConfigHost[]; 247 extern const char kChromeUILinuxProxyConfigHost[];
246 extern const char kChromeUISandboxHost[]; 248 extern const char kChromeUISandboxHost[];
247 #endif 249 #endif
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 extern const char kChooserUsbOverviewURL[]; 590 extern const char kChooserUsbOverviewURL[];
589 591
590 #if defined(OS_CHROMEOS) 592 #if defined(OS_CHROMEOS)
591 // The URL for EOL notification 593 // The URL for EOL notification
592 extern const char kEolNotificationURL[]; 594 extern const char kEolNotificationURL[];
593 #endif 595 #endif
594 596
595 } // namespace chrome 597 } // namespace chrome
596 598
597 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 599 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/welcome_ui.cc ('k') | chrome/common/url_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698