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

Unified Diff: components/web_view/frame.cc

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (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 | « components/web_view/frame.h ('k') | components/web_view/frame_apptest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/web_view/frame.cc
diff --git a/components/web_view/frame.cc b/components/web_view/frame.cc
index 090a52a0e4cb5a49b25e6b8e7145ade83460f7ce..37690f3133ac966a1c2dea4050ad04faa84ec21c 100644
--- a/components/web_view/frame.cc
+++ b/components/web_view/frame.cc
@@ -4,6 +4,8 @@
#include "components/web_view/frame.h"
+#include <stddef.h>
+
#include <algorithm>
#include "base/auto_reset.h"
@@ -164,7 +166,7 @@ double Frame::GatherProgress(int* frame_count) const {
return progress_;
}
-void Frame::Find(int32 request_id,
+void Frame::Find(int32_t request_id,
const mojo::String& search_text,
mojom::FindOptionsPtr options,
bool wrap_within_frame,
@@ -292,7 +294,7 @@ void Frame::OnWillNavigateAck(
mojom::FrameClient* frame_client,
scoped_ptr<FrameUserData> user_data,
mus::mojom::WindowTreeClientPtr window_tree_client,
- uint32 app_id,
+ uint32_t app_id,
base::TimeTicks navigation_start_time) {
DCHECK(waiting_for_on_will_navigate_ack_);
DVLOG(2) << "Frame::OnWillNavigateAck id=" << id_;
« no previous file with comments | « components/web_view/frame.h ('k') | components/web_view/frame_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698