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

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

Issue 2401853005: Adding client code for new Windows 10 First Run Experience (Closed)
Patch Set: Using Polymer dom-bind Created 4 years, 2 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 extern const char kChromeUISyncConfirmationURL[]; 81 extern const char kChromeUISyncConfirmationURL[];
82 extern const char kChromeUITermsURL[]; 82 extern const char kChromeUITermsURL[];
83 extern const char kChromeUIThemeURL[]; 83 extern const char kChromeUIThemeURL[];
84 extern const char kChromeUIThumbnailURL[]; 84 extern const char kChromeUIThumbnailURL[];
85 extern const char kChromeUIThumbnailListURL[]; 85 extern const char kChromeUIThumbnailListURL[];
86 extern const char kChromeUIUberFrameURL[]; 86 extern const char kChromeUIUberFrameURL[];
87 extern const char kChromeUIUserActionsURL[]; 87 extern const char kChromeUIUserActionsURL[];
88 extern const char kChromeUIUserManagerURL[]; 88 extern const char kChromeUIUserManagerURL[];
89 extern const char kChromeUIVersionURL[]; 89 extern const char kChromeUIVersionURL[];
90 extern const char kChromeUIWelcomeURL[]; 90 extern const char kChromeUIWelcomeURL[];
91 extern const char kChromeUIWelcomeWin10URL[];
michaelpg 2016/10/22 03:19:01 Wondering if it would be better to just use kChrom
Patrick Monette 2016/10/24 20:49:40 I don't think we've quite figured out what we're g
tmartino 2016/10/24 21:06:20 This was my choice so I'll chime in here. The UI t
michaelpg 2016/10/24 21:30:08 Thanks for the context.
91 92
92 #if BUILDFLAG(ANDROID_JAVA_UI) 93 #if BUILDFLAG(ANDROID_JAVA_UI)
93 extern const char kChromeUIContextualSearchPromoURL[]; 94 extern const char kChromeUIContextualSearchPromoURL[];
94 extern const char kChromeUINativeScheme[]; 95 extern const char kChromeUINativeScheme[];
95 extern const char kChromeUINativeNewTabURL[]; 96 extern const char kChromeUINativeNewTabURL[];
96 extern const char kChromeUINativeBookmarksURL[]; 97 extern const char kChromeUINativeBookmarksURL[];
97 extern const char kChromeUINativePhysicalWebURL[]; 98 extern const char kChromeUINativePhysicalWebURL[];
98 extern const char kChromeUINativeRecentTabsURL[]; 99 extern const char kChromeUINativeRecentTabsURL[];
99 #endif 100 #endif
100 101
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 extern const char kChromeUIThumbnailHost2[]; 236 extern const char kChromeUIThumbnailHost2[];
236 extern const char kChromeUIThumbnailListHost[]; 237 extern const char kChromeUIThumbnailListHost[];
237 extern const char kChromeUITouchIconHost[]; 238 extern const char kChromeUITouchIconHost[];
238 extern const char kChromeUITranslateInternalsHost[]; 239 extern const char kChromeUITranslateInternalsHost[];
239 extern const char kChromeUIUberFrameHost[]; 240 extern const char kChromeUIUberFrameHost[];
240 extern const char kChromeUIUberHost[]; 241 extern const char kChromeUIUberHost[];
241 extern const char kChromeUIUsbInternalsHost[]; 242 extern const char kChromeUIUsbInternalsHost[];
242 extern const char kChromeUIUserActionsHost[]; 243 extern const char kChromeUIUserActionsHost[];
243 extern const char kChromeUIVersionHost[]; 244 extern const char kChromeUIVersionHost[];
244 extern const char kChromeUIWelcomeHost[]; 245 extern const char kChromeUIWelcomeHost[];
246 extern const char kChromeUIWelcomeWin10Host[];
245 extern const char kChromeUIWorkersHost[]; 247 extern const char kChromeUIWorkersHost[];
246 248
247 #if defined(ENABLE_PRINT_PREVIEW) 249 #if defined(ENABLE_PRINT_PREVIEW)
248 extern const char kChromeUIPrintHost[]; 250 extern const char kChromeUIPrintHost[];
249 #endif // ENABLE_PRINT_PREVIEW 251 #endif // ENABLE_PRINT_PREVIEW
250 252
251 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) 253 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID)
252 extern const char kChromeUILinuxProxyConfigHost[]; 254 extern const char kChromeUILinuxProxyConfigHost[];
253 extern const char kChromeUISandboxHost[]; 255 extern const char kChromeUISandboxHost[];
254 #endif 256 #endif
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 extern const char kChooserUsbOverviewURL[]; 603 extern const char kChooserUsbOverviewURL[];
602 604
603 #if defined(OS_CHROMEOS) 605 #if defined(OS_CHROMEOS)
604 // The URL for EOL notification 606 // The URL for EOL notification
605 extern const char kEolNotificationURL[]; 607 extern const char kEolNotificationURL[];
606 #endif 608 #endif
607 609
608 } // namespace chrome 610 } // namespace chrome
609 611
610 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 612 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698