Chromium Code Reviews| Index: content/public/common/content_constants.h |
| diff --git a/content/public/common/content_constants.h b/content/public/common/content_constants.h |
| index 57d91127458cdbc7d4110c18d1aa6efbfbe4b05d..cf2b568936143f0c1ad6cc2aaa9072894e6f4680 100644 |
| --- a/content/public/common/content_constants.h |
| +++ b/content/public/common/content_constants.h |
| @@ -58,6 +58,12 @@ CONTENT_EXPORT extern const char |
| kGpuCompositingFieldTrialForceCompositingEnabledName[]; |
| CONTENT_EXPORT extern const char kGpuCompositingFieldTrialThreadEnabledName[]; |
| +// Used with WebContent::DownloadImage. |
| +CONTENT_EXPORT enum DownloadImageType { |
| + DOWNLOAD_OTHER, // Regular image loading/decoding. |
|
brettw
2013/03/19 22:50:14
I think this should be indented 2 spaces.
Dmitry Titov
2013/03/20 01:10:07
Removed the enum per John's suggestion.
|
| + DOWNLOAD_FAVICON, // Disallows sending/accepting cookies. |
| +}; |
| + |
| } // namespace content |
| #endif // CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ |