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

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

Issue 10920033: Implement Android WebView BlockNetworkImages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update ContentSetting to new locking semantics. Add a test that does not require http server. Created 8 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 | 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 extern const char kExtensionScheme[]; 400 extern const char kExtensionScheme[];
401 401
402 // Canonical schemes you can use as input to GURL.SchemeIs(). 402 // Canonical schemes you can use as input to GURL.SchemeIs().
403 extern const char kExtensionResourceScheme[]; 403 extern const char kExtensionResourceScheme[];
404 404
405 #if defined(OS_CHROMEOS) 405 #if defined(OS_CHROMEOS)
406 extern const char kDriveScheme[]; 406 extern const char kDriveScheme[];
407 #endif 407 #endif
408 408
409 #if defined(OS_ANDROID) 409 #if defined(OS_ANDROID)
410 extern const char kContentScheme[];
411 // Special Android file paths. 410 // Special Android file paths.
412 extern const char kAndroidAssetPath[]; 411 extern const char kAndroidAssetPath[];
413 extern const char kAndroidResourcePath[]; 412 extern const char kAndroidResourcePath[];
414 #endif 413 #endif
415 414
416 #if defined(OS_CHROMEOS) 415 #if defined(OS_CHROMEOS)
417 // "Learn more" URL for the Cloud Print section under Options. 416 // "Learn more" URL for the Cloud Print section under Options.
418 extern const char kCloudPrintLearnMoreURL[]; 417 extern const char kCloudPrintLearnMoreURL[];
419 #endif 418 #endif
420 419
421 } // namespace chrome 420 } // namespace chrome
422 421
423 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 422 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698