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

Unified Diff: components/content_settings/core/browser/website_settings_info.h

Issue 1549003002: Switch to standard integer types in base/memory/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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: components/content_settings/core/browser/website_settings_info.h
diff --git a/components/content_settings/core/browser/website_settings_info.h b/components/content_settings/core/browser/website_settings_info.h
index 51016ea55209cb803d6ab79e593ea8b354178b81..073af84c5bd5558ab41a21225782dcdf8f639e04 100644
--- a/components/content_settings/core/browser/website_settings_info.h
+++ b/components/content_settings/core/browser/website_settings_info.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_WEBSITE_SETTINGS_INFO_H_
#define COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_WEBSITE_SETTINGS_INFO_H_
+#include <stdint.h>
+
#include <string>
#include "base/macros.h"
@@ -59,7 +61,7 @@ class WebsiteSettingsInfo {
return initial_default_value_.get();
}
- uint32 GetPrefRegistrationFlags() const;
+ uint32_t GetPrefRegistrationFlags() const;
ScopingType scoping_type() const { return scoping_type_; }

Powered by Google App Engine
This is Rietveld 408576698