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

Unified Diff: extensions/browser/extension_host.h

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
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 | « extensions/browser/extension_function_util.cc ('k') | extensions/browser/extension_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/extension_host.h
diff --git a/extensions/browser/extension_host.h b/extensions/browser/extension_host.h
index 0b10e9a721c3013e3fce03405959779ba936ad5b..50ddf21b4fbe05378e4fc0aaeeb043e099b1e8eb 100644
--- a/extensions/browser/extension_host.h
+++ b/extensions/browser/extension_host.h
@@ -5,10 +5,13 @@
#ifndef EXTENSIONS_BROWSER_EXTENSION_HOST_H_
#define EXTENSIONS_BROWSER_EXTENSION_HOST_H_
+#include <stdint.h>
+
#include <set>
#include <string>
#include "base/logging.h"
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/observer_list.h"
#include "base/timer/elapsed_timer.h"
@@ -91,11 +94,11 @@ class ExtensionHost : public DeferredStartRenderHost,
// Called by the ProcessManager when a network request is started by the
// extension corresponding to this ExtensionHost.
- void OnNetworkRequestStarted(uint64 request_id);
+ void OnNetworkRequestStarted(uint64_t request_id);
// Called by the ProcessManager when a previously started network request is
// finished.
- void OnNetworkRequestDone(uint64 request_id);
+ void OnNetworkRequestDone(uint64_t request_id);
// content::WebContentsObserver:
bool OnMessageReceived(const IPC::Message& message,
« no previous file with comments | « extensions/browser/extension_function_util.cc ('k') | extensions/browser/extension_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698