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

Unified Diff: ui/views/controls/webview/webview_unittest.cc

Issue 1543173002: Switch to standard integer types in ui/views/. (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: ui/views/controls/webview/webview_unittest.cc
diff --git a/ui/views/controls/webview/webview_unittest.cc b/ui/views/controls/webview/webview_unittest.cc
index 76ef42d665fe5dca72372db78bee373babfe5a83..bc2a927c5a70738994633b00a3d5c28d4e66dad6 100644
--- a/ui/views/controls/webview/webview_unittest.cc
+++ b/ui/views/controls/webview/webview_unittest.cc
@@ -4,6 +4,9 @@
#include "ui/views/controls/webview/webview.h"
+#include <stdint.h>
+
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_observer.h"
@@ -86,8 +89,8 @@ class WebViewTestWebContentsObserver : public content::WebContentsObserver {
private:
content::WebContents* web_contents_;
bool was_shown_;
- int32 shown_count_;
- int32 hidden_count_;
+ int32_t shown_count_;
+ int32_t hidden_count_;
// Set to true if the view containing the webcontents has a valid root window.
bool valid_root_while_shown_;

Powered by Google App Engine
This is Rietveld 408576698