| 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)
|
|
|