1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Contains constants for known URLs and portions thereof.
// Except for WebUI UI/Host/SubPage constants. Those go in
// chrome/common/webui_url_constants.h.
//
// - The constants are divided into sections: Cross platform, platform-specific,
// and feature-specific.
// - When adding platform/feature specific constants, if there already exists an
// appropriate #if block, use that.
// - Keep the constants sorted by name within its section.
// - Use the same order in this header and url_constants.cc.
#ifndef CHROME_COMMON_URL_CONSTANTS_H_
#define CHROME_COMMON_URL_CONSTANTS_H_
#include <stddef.h>
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "chrome/common/buildflags.h"
#include "chrome/common/webui_url_constants.h"
#include "content/public/common/url_constants.h"
#include "ppapi/buildflags/buildflags.h"
namespace chrome {
// "Learn more" URL for accessibility image labels, linked from the permissions
// dialog shown when a user enables the feature.
extern const char kAccessibilityLabelsLearnMoreURL[];
// "Learn more" URL for when profile settings are automatically reset.
extern const char kAutomaticSettingsResetLearnMoreURL[];
// "Learn more" URL for Advanced Protection download warnings.
extern const char kAdvancedProtectionDownloadLearnMoreURL[];
// "Chrome Settings" URL for website notifications linked out from OSSettings.
extern const char kAppNotificationsBrowserSettingsURL[];
// The URL for providing help when the Bluetooth adapter is off.
extern const char kBluetoothAdapterOffHelpURL[];
// "Learn more" URL shown in the dialog to enable cloud services for Cast.
extern const char kCastCloudServicesHelpURL[];
// The URL for the help center article to show when no Cast destination has been
// found.
extern const char kCastNoDestinationFoundURL[];
// The URL for the WebHID API help center article.
extern const char kChooserHidOverviewUrl[];
// The URL for the Web Serial API help center article.
extern const char kChooserSerialOverviewUrl[];
// The URL for the WebUsb help center article.
extern const char kChooserUsbOverviewURL[];
// Link to the forum for Chrome Beta.
extern const char kChromeBetaForumURL[];
// The URL for the help center article to fix Chrome update problems.
extern const char kChromeFixUpdateProblems[];
// General help links for Chrome, opened using various actions.
extern const char kChromeHelpViaKeyboardURL[];
extern const char kChromeHelpViaMenuURL[];
extern const char kChromeHelpViaWebUIURL[];
#if BUILDFLAG(IS_CHROMEOS_ASH)
extern const char kChromeOsHelpViaWebUIURL[];
#endif
// The chrome-native: scheme is used show pages rendered with platform specific
// widgets instead of using HTML.
extern const char kChromeNativeScheme[];
// Pages under chrome-search.
extern const char kChromeSearchLocalNtpHost[];
// Host and URL for most visited iframes used on the Instant Extended NTP.
extern const char kChromeSearchMostVisitedHost[];
extern const char kChromeSearchMostVisitedUrl[];
// URL for NTP custom background image selected from the user's machine and
// filename for the version of the file in the Profile directory
extern const char kChromeUIUntrustedNewTabPageBackgroundUrl[];
extern const char kChromeUIUntrustedNewTabPageBackgroundFilename[];
// Page under chrome-search.
extern const char kChromeSearchRemoteNtpHost[];
// The chrome-search: scheme is served by the same backend as chrome:. However,
// only specific URLDataSources are enabled to serve requests via the
// chrome-search: scheme. See |InstantIOContext::ShouldServiceRequest| and its
// callers for details. Note that WebUIBindings should never be granted to
// chrome-search: pages. chrome-search: pages are displayable but not readable
// by external search providers (that are rendered by Instant renderer
// processes), and neither displayable nor readable by normal (non-Instant) web
// pages. To summarize, a non-Instant process, when trying to access
// 'chrome-search://something', will bump up against the following:
//
// 1. Renderer: The display-isolated check in WebKit will deny the request,
// 2. Browser: Assuming they got by #1, the scheme checks in
// URLDataSource::ShouldServiceRequest will deny the request,
// 3. Browser: for specific sub-classes of URLDataSource, like ThemeSource
// there are additional Instant-PID checks that make sure the request is
// coming from a blessed Instant process, and deny the request.
extern const char kChromeSearchScheme[];
// This is the base URL of content that can be embedded in chrome://new-tab-page
// using an <iframe>. The embedded untrusted content can make web requests and
// can include content that is from an external source.
extern const char kChromeUIUntrustedNewTabPageUrl[];
// The URL for the Chromium project used in the About dialog.
extern const char kChromiumProjectURL[];
// "Learn more" URL for the Cloud Print section under Options.
extern const char kCloudPrintLearnMoreURL[];
// "Learn more" URL for the Cloud Print Preview certificate error.
extern const char kCloudPrintCertificateErrorLearnMoreURL[];
extern const char kContentSettingsExceptionsLearnMoreURL[];
// "Learn more" URL for cookies.
extern const char kCookiesSettingsHelpCenterURL[];
// "Learn more" URL for "Aw snap" page when showing "Reload" button.
extern const char kCrashReasonURL[];
// "Learn more" URL for "Aw snap" page when showing "Send feedback" button.
extern const char kCrashReasonFeedbackDisplayedURL[];
// "Learn more" URL for the "Do not track" setting in the privacy section.
extern const char kDoNotTrackLearnMoreURL[];
// The URL for the "Learn more" page for interrupted downloads.
extern const char kDownloadInterruptedLearnMoreURL[];
// The URL for the "Learn more" page for download scanning.
extern const char kDownloadScanningLearnMoreURL[];
// "Learn more" URL for the Settings API, NTP bubble and other settings bubbles
// showing which extension is controlling them.
extern const char kExtensionControlledSettingLearnMoreURL[];
// URL used to indicate that an extension resource load request was invalid.
extern const char kExtensionInvalidRequestURL[];
// Url to a blogpost about Flash deprecation.
extern const char kFlashDeprecationLearnMoreURL[];
// URL of the Google account language selection page.
extern const char kGoogleAccountLanguagesURL[];
// URL of the 'Activity controls' section of the privacy settings page.
extern const char kGoogleAccountActivityControlsURL[];
// URL of the Google Account.
extern const char kGoogleAccountURL[];
// URL of the Google Account chooser.
extern const char kGoogleAccountChooserURL[];
// URL of the Google Password Manager.
extern const char kGooglePasswordManagerURL[];
// URL of the Google Photos.
extern const char kGooglePhotosURL[];
// The URL for the "Learn more" page for the usage/crash reporting option in the
// first run dialog.
extern const char kLearnMoreReportingURL[];
// The URL for the Learn More page about policies and enterprise enrollment.
extern const char kManagedUiLearnMoreUrl[];
// The URL for the "Learn more" page for mixed content download blocking.
extern const char kMixedContentDownloadBlockingLearnMoreUrl[];
// "myactivity.google.com" URL for the history checkbox in ClearBrowsingData.
extern const char kMyActivityUrlInClearBrowsingData[];
// Help URL for the Omnibox setting.
extern const char kOmniboxLearnMoreURL[];
// "What do these mean?" URL for the Page Info bubble.
extern const char kPageInfoHelpCenterURL[];
// Help URL for the bulk password check.
extern const char kPasswordCheckLearnMoreURL[];
// Help URL for password generation.
extern const char kPasswordGenerationLearnMoreURL[];
extern const char kPasswordManagerLearnMoreURL[];
// Help URL for the Payment methods page of the Google Pay site.
extern const char kPaymentMethodsURL[];
extern const char kPaymentMethodsLearnMoreURL[];
// "Learn more" URL for the Privacy section under Options.
extern const char kPrivacyLearnMoreURL[];
// The URL for the Learn More link of the non-CWS bubble.
extern const char kRemoveNonCWSExtensionURL[];
// "Learn more" URL for resetting profile preferences.
extern const char kResetProfileSettingsLearnMoreURL[];
// "Learn more" URL for Safebrowsing
extern const char kSafeBrowsingHelpCenterURL[];
// "Learn more" URL for safety tip bubble.
extern const char kSafetyTipHelpCenterURL[];
// Google search history URL that leads users of the CBD dialog to their search
// history in their Google account.
extern const char kSearchHistoryUrlInClearBrowsingData[];
// The URL for the "See more security tips" with advices how to create a strong
// password.
extern const char kSeeMoreSecurityTipsURL[];
// Help URL for the settings page's search feature.
extern const char kSettingsSearchHelpURL[];
// The URL for the Learn More page about Sync and Google services.
extern const char kSyncAndGoogleServicesLearnMoreURL[];
// The URL for the "Learn more" page on sync encryption.
extern const char kSyncEncryptionHelpURL[];
// The URL for the "Learn more" link when there is a sync error.
extern const char kSyncErrorsHelpURL[];
extern const char kSyncGoogleDashboardURL[];
// The URL for the "Learn more" page for sync setup on the personal stuff page.
extern const char kSyncLearnMoreURL[];
#if !defined(OS_ANDROID)
// The URL for the trusted vault sync passphrase opt in.
extern const char kSyncTrustedVaultOptInURL[];
#endif
extern const char kUpgradeHelpCenterBaseURL[];
// The URL for the "Learn more" link for nearby share.
extern const char kNearbyShareLearnMoreURL[];
// Help center URL for who the account administrator is.
extern const char kWhoIsMyAdministratorHelpURL[];
// The URL for the "Learn more" link about CWS Enhanced Safe Browsing.
extern const char kCwsEnhancedSafeBrowsingLearnMoreURL[];
#if defined(OS_ANDROID) || BUILDFLAG(IS_CHROMEOS_ASH)
// "Learn more" URL for the enhanced playback notification dialog.
extern const char kEnhancedPlaybackNotificationLearnMoreURL[];
#endif
#if BUILDFLAG(IS_CHROMEOS_ASH)
// Help center URL for Chrome OS Account Manager.
extern const char kAccountManagerLearnMoreURL[];
// The URL for the "Account recovery" page.
extern const char kAccountRecoveryURL[];
// The URL for the "learn more" link for Google Play Store (ARC) settings.
extern const char kAndroidAppsLearnMoreURL[];
// Help center URL for ARC ADB sideloading.
extern const char kArcAdbSideloadingLearnMoreURL[];
// The URL for the "Learn more" link in the External storage preferences
// settings.
extern const char kArcExternalStorageLearnMoreURL[];
// The path format to the localized offline ARC++ Privacy Policy.
// Relative to |kChromeOSAssetPath|.
extern const char kArcPrivacyPolicyPathFormat[];
// The path format to the localized offline ARC++ Terms of Service.
// Relative to |kChromeOSAssetPath|.
extern const char kArcTermsPathFormat[];
// Accessibility help link for Chrome.
extern const char kChromeAccessibilityHelpURL[];
extern const char kChromeOSAssetHost[];
extern const char kChromeOSAssetPath[];
extern const char kChromeOSCreditsPath[];
// Chrome OS tablet gestures education help link for Chrome.
extern const char kChromeOSGestureEducationHelpURL[];
// Palette help link for Chrome.
extern const char kChromePaletteHelpURL[];
extern const char kCrosScheme[];
extern const char kCupsPrintLearnMoreURL[];
extern const char kCupsPrintPPDLearnMoreURL[];
// The URL for the "Learn more" link the the Easy Unlock settings.
extern const char kEasyUnlockLearnMoreUrl[];
// The URL for the help center article about redeeming Chromebook offers.
extern const char kEchoLearnMoreURL[];
// The URL for EOL notification
extern const char kEolNotificationURL[];
// The URL for Auto Update Policy.
extern const char kAutoUpdatePolicyURL[];
// The URL for providing more information about Google nameservers.
extern const char kGoogleNameserversLearnMoreURL[];
// The URL for G Suite for Education Privacy Notice.
extern const char kGsuiteTermsEducationPrivacyURL[];
// The URL for the "learn more" link for Instant Tethering.
extern const char kInstantTetheringLearnMoreURL[];
// The URL for the "Learn more" link for Kerberos accounts.
extern const char kKerberosAccountsLearnMoreURL[];
// The URL for the "Learn more" link in the connected devices.
extern const char kMultiDeviceLearnMoreURL[];
// The URL for the "Learn more" link for Android Messages.
extern const char kAndroidMessagesLearnMoreURL[];
// The URL for the "Learn more" link in the language settings.
extern const char kLanguageSettingsLearnMoreUrl[];
// The URL for the Learn More page about enterprise enrolled devices.
extern const char kLearnMoreEnterpriseURL[];
// The URL for the Learn More page about Linux for Chromebooks.
extern const char kLinuxAppsLearnMoreURL[];
// The URL for additional help that is given when Linux export/import fails.
extern const char kLinuxExportImportHelpURL[];
// The URL for the "Learn more" link for natural scrolling on ChromeOS.
extern const char kNaturalScrollHelpURL[];
// The URL path to offline OEM EULA.
extern const char kOemEulaURLPath[];
// Help URL for the OS settings page's search feature.
extern const char kOsSettingsSearchHelpURL[];
// The URL for the "Learn more" link in the peripheral data access protection
// settings.
extern const char kPeripheralDataAccessHelpURL[];
// The URL path to offline ARC++ Terms of Service.
extern const char kArcTermsURLPath[];
// The URL path to offline ARC++ Privacy Policy.
extern const char kArcPrivacyPolicyURLPath[];
extern const char kOnlineEulaURLPath[];
extern const char kAdditionalToSOnlineURLPath[];
// The URL for the "learn more" link for TPM firmware update.
extern const char kTPMFirmwareUpdateLearnMoreURL[];
// The URL for the "Learn more" page for the time zone settings page.
extern const char kTimeZoneSettingsLearnMoreURL[];
// The URL for the "Learn more" page for the network file shares settings page.
extern const char kSmbSharesLearnMoreURL[];
// The URL for the "Learn more" page for Suggested Content in the privacy page.
extern const char kSuggestedContentLearnMoreURL[];
// The URL to a support article with more information about gestures available
// in tablet mode on Chrome OS (gesture to go to home screen, overview, or to go
// back). Used as a "Learn more" link URL for the accessibility option to shelf
// navigation buttons in tablet mode (the buttons are hidden by default in
// favour of the gestures in question).
extern const char kTabletModeGesturesLearnMoreURL[];
// The URL for the help center article about Wi-Fi sync.
extern const char kWifiSyncLearnMoreURL[];
// The URL for the help center article about hidden Wi-Fi networks.
extern const char kWifiHiddenNetworkURL[];
// The URL for contacts management in Nearby Share feature.
extern const char kNearbyShareManageContactsURL[];
// The URL for the help center article about fingerprint on Chrome OS devices.
extern const char kFingerprintLearnMoreURL[];
#endif // BUILDFLAG(IS_CHROMEOS_ASH)
#if defined(OS_MAC)
// "Learn more" URL for the enterprise sign-in confirmation dialog.
extern const char kChromeEnterpriseSignInLearnMoreURL[];
// The URL for the "learn more" link on the 10.10 obsolescence infobar.
extern const char kMac10_10_ObsoleteURL[];
#endif
#if defined(OS_WIN)
// The URL for the Learn More link in the Chrome Cleanup settings card.
extern const char kChromeCleanerLearnMoreURL[];
// The URL for the Windows XP/Vista deprecation help center article.
extern const char kWindowsXPVistaDeprecationURL[];
#endif
#if BUILDFLAG(ENABLE_ONE_CLICK_SIGNIN)
// "Learn more" URL for the one click signin infobar.
extern const char kChromeSyncLearnMoreURL[];
#endif
#if BUILDFLAG(ENABLE_PLUGINS)
// The URL for the "Learn more" page for the outdated plugin infobar.
extern const char kOutdatedPluginLearnMoreURL[];
#endif
// Please do not append entries here. See the comments at the top of the file.
} // namespace chrome
#endif // CHROME_COMMON_URL_CONSTANTS_H_
|