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

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

Issue 19054012: Reload Local NTP on default search provider change. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 7 years, 5 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 // 2. Browser: Assuming they got by #1, the scheme checks in 442 // 2. Browser: Assuming they got by #1, the scheme checks in
443 // URLDataSource::ShouldServiceRequest will deny the request, 443 // URLDataSource::ShouldServiceRequest will deny the request,
444 // 3. Browser: for specific sub-classes of URLDataSource, like ThemeSource 444 // 3. Browser: for specific sub-classes of URLDataSource, like ThemeSource
445 // there are additional Instant-PID checks that make sure the request is 445 // there are additional Instant-PID checks that make sure the request is
446 // coming from a blessed Instant process, and deny the request. 446 // coming from a blessed Instant process, and deny the request.
447 extern const char kChromeSearchScheme[]; 447 extern const char kChromeSearchScheme[];
448 448
449 // Pages under chrome-search. 449 // Pages under chrome-search.
450 extern const char kChromeSearchLocalNtpHost[]; 450 extern const char kChromeSearchLocalNtpHost[];
451 extern const char kChromeSearchLocalNtpUrl[]; 451 extern const char kChromeSearchLocalNtpUrl[];
452 extern const char kChromeSearchLocalGoogleNtpUrl[];
453 452
454 // Host and URL for most visited iframes used on the Instant Extended NTP. 453 // Host and URL for most visited iframes used on the Instant Extended NTP.
455 extern const char kChromeSearchMostVisitedHost[]; 454 extern const char kChromeSearchMostVisitedHost[];
456 extern const char kChromeSearchMostVisitedUrl[]; 455 extern const char kChromeSearchMostVisitedUrl[];
457 456
458 #if defined(OS_CHROMEOS) 457 #if defined(OS_CHROMEOS)
459 extern const char kCrosScheme[]; 458 extern const char kCrosScheme[];
460 extern const char kDriveScheme[]; 459 extern const char kDriveScheme[];
461 460
462 // "Learn more" URL for the Cloud Print section under Options. 461 // "Learn more" URL for the Cloud Print section under Options.
463 extern const char kCloudPrintLearnMoreURL[]; 462 extern const char kCloudPrintLearnMoreURL[];
464 #endif 463 #endif
465 464
466 // Parameters that get appended to force SafeSearch. 465 // Parameters that get appended to force SafeSearch.
467 extern const char kSafeSearchSafeParameter[]; 466 extern const char kSafeSearchSafeParameter[];
468 extern const char kSafeSearchSsuiParameter[]; 467 extern const char kSafeSearchSsuiParameter[];
469 468
470 // The URL for the "Learn more" link in the media access infobar. 469 // The URL for the "Learn more" link in the media access infobar.
471 extern const char kMediaAccessLearnMoreUrl[]; 470 extern const char kMediaAccessLearnMoreUrl[];
472 471
473 } // namespace chrome 472 } // namespace chrome
474 473
475 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 474 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698