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

Unified Diff: content/renderer/render_view_impl.h

Issue 1547073003: Switch to standard integer types in content/renderer/. (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/renderer/render_view_browsertest.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.h
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index 64d39ecfd13b314490e86e8a23bf7f7725450308..2baacd6991a64e8046670a180c821ab90b47e8f4 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -5,15 +5,18 @@
#ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
#define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
+#include <stddef.h>
+#include <stdint.h>
+
#include <deque>
#include <map>
#include <set>
#include <string>
#include <vector>
-#include "base/basictypes.h"
#include "base/gtest_prod_util.h"
#include "base/id_map.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
@@ -615,7 +618,7 @@ class CONTENT_EXPORT RenderViewImpl
void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands);
void OnAllowBindings(int enabled_bindings_flags);
void OnAllowScriptToClose(bool script_can_close);
- void OnCancelDownload(int32 download_id);
+ void OnCancelDownload(int32_t download_id);
void OnClearFocusedElement();
void OnClosePage();
void OnClose();
@@ -846,11 +849,11 @@ class CONTENT_EXPORT RenderViewImpl
// Page IDs ------------------------------------------------------------------
// See documentation in RenderView.
- int32 page_id_;
+ int32_t page_id_;
// The next available page ID to use for this RenderView. These IDs are
// specific to a given RenderView and the frames within it.
- int32 next_page_id_;
+ int32_t next_page_id_;
// The offset of the current item in the history list.
int history_list_offset_;
@@ -1009,7 +1012,7 @@ class CONTENT_EXPORT RenderViewImpl
// The SessionStorage namespace that we're assigned to has an ID, and that ID
// is passed to us upon creation. WebKit asks for this ID upon first use and
// uses it whenever asking the browser process to allocate new storage areas.
- int64 session_storage_namespace_id_;
+ int64_t session_storage_namespace_id_;
// Stores edit commands associated to the next key event.
// Shall be cleared as soon as the next key event is processed.
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698