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

Unified Diff: content/child/webthemeengine_impl_default.h

Issue 1544273002: Switch to standard integer types in content/. (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
« no previous file with comments | « content/child/websocket_dispatcher.cc ('k') | content/child/webthemeengine_impl_default.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/webthemeengine_impl_default.h
diff --git a/content/child/webthemeengine_impl_default.h b/content/child/webthemeengine_impl_default.h
index df2523812a5fae09f71e3532f029fead3c9501ad..c927e5a6099ce9223157f96ea6c3386e9177a5c0 100644
--- a/content/child/webthemeengine_impl_default.h
+++ b/content/child/webthemeengine_impl_default.h
@@ -5,6 +5,9 @@
#ifndef CONTENT_CHILD_WEBTHEMEENGINE_IMPL_DEFAULT_H_
#define CONTENT_CHILD_WEBTHEMEENGINE_IMPL_DEFAULT_H_
+#include <stdint.h>
+
+#include "build/build_config.h"
#include "third_party/WebKit/public/platform/WebThemeEngine.h"
namespace content {
@@ -27,10 +30,10 @@ class WebThemeEngineImpl : public blink::WebThemeEngine {
#if defined(OS_WIN)
// Caches the scrollbar metrics.
- static void cacheScrollBarMetrics(int32 vertical_scroll_bar_width,
- int32 horizontal_scroll_bar_height,
- int32 vertical_arrow_bitmap_height,
- int32 horizontal_arrow_bitmap_width);
+ static void cacheScrollBarMetrics(int32_t vertical_scroll_bar_width,
+ int32_t horizontal_scroll_bar_height,
+ int32_t vertical_arrow_bitmap_height,
+ int32_t horizontal_arrow_bitmap_width);
#endif
};
« no previous file with comments | « content/child/websocket_dispatcher.cc ('k') | content/child/webthemeengine_impl_default.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698