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

Unified Diff: extensions/browser/guest_view/web_view/web_view_constants.h

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: extensions/browser/guest_view/web_view/web_view_constants.h
diff --git a/extensions/browser/guest_view/web_view/web_view_constants.h b/extensions/browser/guest_view/web_view/web_view_constants.h
index 17b1517e1a74df8021e17cdb49fc96b75d53f7cd..6b82c19297de98284afb03ce801bdd9c7283c05e 100644
--- a/extensions/browser/guest_view/web_view/web_view_constants.h
+++ b/extensions/browser/guest_view/web_view/web_view_constants.h
@@ -7,7 +7,7 @@
#ifndef EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_CONSTANTS_H_
#define EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_CONSTANTS_H_
-#include "base/basictypes.h"
+#include <stdint.h>
namespace webview {
@@ -141,13 +141,13 @@ extern const int kInvalidPermissionRequestID;
//
// Note that these are not in an enum because using enums to declare bitmasks
// results in the enum values being signed.
-extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_APPCACHE;
-extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_CACHE;
-extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_COOKIES;
-extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_FILE_SYSTEMS;
-extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_INDEXEDDB;
-extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_LOCAL_STORAGE;
-extern const uint32 WEB_VIEW_REMOVE_DATA_MASK_WEBSQL;
+extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_APPCACHE;
+extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_CACHE;
+extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_COOKIES;
+extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_FILE_SYSTEMS;
+extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_INDEXEDDB;
+extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_LOCAL_STORAGE;
+extern const uint32_t WEB_VIEW_REMOVE_DATA_MASK_WEBSQL;
// Other.
extern const char kWebViewContentScriptManagerKeyName[];

Powered by Google App Engine
This is Rietveld 408576698