Index: extensions/renderer/script_injection.h |
diff --git a/extensions/renderer/script_injection.h b/extensions/renderer/script_injection.h |
index 0c7e186637ee4e44b36dde40b65e7705d51ca0de..6b3679573c377a4fa433be33249360bae3f134cb 100644 |
--- a/extensions/renderer/script_injection.h |
+++ b/extensions/renderer/script_injection.h |
@@ -5,7 +5,8 @@ |
#ifndef EXTENSIONS_RENDERER_SCRIPT_INJECTION_H_ |
#define EXTENSIONS_RENDERER_SCRIPT_INJECTION_H_ |
-#include "base/basictypes.h" |
+#include <stdint.h> |
+ |
#include "base/callback.h" |
#include "base/macros.h" |
#include "base/memory/scoped_ptr.h" |
@@ -82,7 +83,7 @@ class ScriptInjection { |
// Accessors. |
content::RenderFrame* render_frame() const { return render_frame_; } |
const HostID& host_id() const { return injection_host_->id(); } |
- int64 request_id() const { return request_id_; } |
+ int64_t request_id() const { return request_id_; } |
private: |
class FrameWatcher; |
@@ -121,7 +122,7 @@ class ScriptInjection { |
// This injection's request id. This will be -1 unless the injection is |
// currently waiting on permission. |
- int64 request_id_; |
+ int64_t request_id_; |
// Whether or not the injection is complete, either via injecting the script |
// or because it will never complete. |