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

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

Issue 17286015: Adds a first-run balloon to the Windows notification center. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test failures Created 7 years, 6 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 | Annotate | Revision Log
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 "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 extern const char kSideloadWipeoutHelpURL[]; 389 extern const char kSideloadWipeoutHelpURL[];
390 390
391 #if defined(OS_CHROMEOS) 391 #if defined(OS_CHROMEOS)
392 // The URL for the "Learn more" link for natural scrolling on ChromeOS. 392 // The URL for the "Learn more" link for natural scrolling on ChromeOS.
393 extern const char kNaturalScrollHelpURL[]; 393 extern const char kNaturalScrollHelpURL[];
394 394
395 // The URL for the Learn More page about enterprise enrolled devices. 395 // The URL for the Learn More page about enterprise enrolled devices.
396 extern const char kLearnMoreEnterpriseURL[]; 396 extern const char kLearnMoreEnterpriseURL[];
397 #endif 397 #endif
398 398
399 extern const char kNotificationsHelpURL[];
400
399 // "Debug" pages which are dangerous and not for general consumption. 401 // "Debug" pages which are dangerous and not for general consumption.
400 extern const char* const kChromeDebugURLs[]; 402 extern const char* const kChromeDebugURLs[];
401 extern const int kNumberOfChromeDebugURLs; 403 extern const int kNumberOfChromeDebugURLs;
402 404
403 // Canonical schemes you can use as input to GURL.SchemeIs(). 405 // Canonical schemes you can use as input to GURL.SchemeIs().
404 extern const char kExtensionResourceScheme[]; 406 extern const char kExtensionResourceScheme[];
405 407
406 // The chrome-search: scheme is served by the same backend as chrome:. However, 408 // The chrome-search: scheme is served by the same backend as chrome:. However,
407 // only specific URLDataSources are enabled to serve requests via the 409 // only specific URLDataSources are enabled to serve requests via the
408 // chrome-search: scheme. See |InstantIOContext::ShouldServiceRequest| and its 410 // chrome-search: scheme. See |InstantIOContext::ShouldServiceRequest| and its
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 // Parameters that get appended to force SafeSearch. 447 // Parameters that get appended to force SafeSearch.
446 extern const char kSafeSearchSafeParameter[]; 448 extern const char kSafeSearchSafeParameter[];
447 extern const char kSafeSearchSsuiParameter[]; 449 extern const char kSafeSearchSsuiParameter[];
448 450
449 // The URL for the "Learn more" link in the media access infobar. 451 // The URL for the "Learn more" link in the media access infobar.
450 extern const char kMediaAccessLearnMoreUrl[]; 452 extern const char kMediaAccessLearnMoreUrl[];
451 453
452 } // namespace chrome 454 } // namespace chrome
453 455
454 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 456 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698