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

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

Issue 15388002: Supporting high dpi favicons in Instant Extended. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Refactoring after Kausalya's change 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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 extern const char kChromeSearchLocalGoogleNtpUrl[]; 427 extern const char kChromeSearchLocalGoogleNtpUrl[];
428 428
429 // Host for search suggestions iframes. 429 // Host for search suggestions iframes.
430 extern const char kChromeSearchSuggestionHost[]; 430 extern const char kChromeSearchSuggestionHost[];
431 extern const char kChromeSearchSuggestionUrl[]; 431 extern const char kChromeSearchSuggestionUrl[];
432 432
433 // Host and URL for most visited iframes used on the Instant Extended NTP. 433 // Host and URL for most visited iframes used on the Instant Extended NTP.
434 extern const char kChromeSearchMostVisitedHost[]; 434 extern const char kChromeSearchMostVisitedHost[];
435 extern const char kChromeSearchMostVisitedUrl[]; 435 extern const char kChromeSearchMostVisitedUrl[];
436 436
437 // URL used to indicate that Chrome Search resource load request was invalid.
438 extern const char kChromeSearchInvalidRequestUrl[];
439
437 #if defined(OS_CHROMEOS) 440 #if defined(OS_CHROMEOS)
438 extern const char kCrosScheme[]; 441 extern const char kCrosScheme[];
439 extern const char kDriveScheme[]; 442 extern const char kDriveScheme[];
440 443
441 // "Learn more" URL for the Cloud Print section under Options. 444 // "Learn more" URL for the Cloud Print section under Options.
442 extern const char kCloudPrintLearnMoreURL[]; 445 extern const char kCloudPrintLearnMoreURL[];
443 #endif 446 #endif
444 447
445 // Parameters that get appended to force SafeSearch. 448 // Parameters that get appended to force SafeSearch.
446 extern const char kSafeSearchSafeParameter[]; 449 extern const char kSafeSearchSafeParameter[];
447 extern const char kSafeSearchSsuiParameter[]; 450 extern const char kSafeSearchSsuiParameter[];
448 451
449 // The URL for the "Learn more" link in the media access infobar. 452 // The URL for the "Learn more" link in the media access infobar.
450 extern const char kMediaAccessLearnMoreUrl[]; 453 extern const char kMediaAccessLearnMoreUrl[];
451 454
452 } // namespace chrome 455 } // namespace chrome
453 456
454 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 457 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698