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

Unified Diff: chrome/utility/extensions/extensions_handler.h

Issue 1548153002: Switch to standard integer types in chrome/. (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 | « chrome/utility/cloud_print/pwg_encoder_unittest.cc ('k') | chrome/utility/extensions/extensions_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/extensions/extensions_handler.h
diff --git a/chrome/utility/extensions/extensions_handler.h b/chrome/utility/extensions/extensions_handler.h
index fadf3e8112ad7eff607052946b0e898335f4f0bd..1ac86eb23512e01ffe7ecbeef8ddf5462d4b3482 100644
--- a/chrome/utility/extensions/extensions_handler.h
+++ b/chrome/utility/extensions/extensions_handler.h
@@ -5,9 +5,12 @@
#ifndef CHROME_UTILITY_EXTENSIONS_EXTENSIONS_HANDLER_H_
#define CHROME_UTILITY_EXTENSIONS_EXTENSIONS_HANDLER_H_
+#include <stdint.h>
+
#include "base/base64.h"
#include "base/compiler_specific.h"
#include "base/macros.h"
+#include "build/build_config.h"
#include "chrome/common/media_galleries/picasa_types.h"
#include "chrome/utility/utility_message_handler.h"
#include "extensions/utility/utility_handler.h"
@@ -37,11 +40,11 @@ class ExtensionsHandler : public UtilityMessageHandler {
private:
// IPC message handlers.
- void OnCheckMediaFile(int64 milliseconds_of_decoding,
+ void OnCheckMediaFile(int64_t milliseconds_of_decoding,
const IPC::PlatformFileForTransit& media_file);
void OnParseMediaMetadata(const std::string& mime_type,
- int64 total_size,
+ int64_t total_size,
bool get_attached_images);
#if defined(OS_WIN)
« no previous file with comments | « chrome/utility/cloud_print/pwg_encoder_unittest.cc ('k') | chrome/utility/extensions/extensions_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698