| Index: content/renderer/webclipboard_impl.h
|
| diff --git a/content/renderer/webclipboard_impl.h b/content/renderer/webclipboard_impl.h
|
| index a9604065b1902fbcf390007b0a6e2d285a1d407b..3bdc568bcddb380cdcc2adeb6db3fe6cfb6e863a 100644
|
| --- a/content/renderer/webclipboard_impl.h
|
| +++ b/content/renderer/webclipboard_impl.h
|
| @@ -5,12 +5,14 @@
|
| #ifndef CONTENT_RENDERER_WEBCLIPBOARD_IMPL_H_
|
| #define CONTENT_RENDERER_WEBCLIPBOARD_IMPL_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| +#include <string>
|
| +
|
| #include "base/compiler_specific.h"
|
| #include "third_party/WebKit/public/platform/WebClipboard.h"
|
| #include "ui/base/clipboard/clipboard.h"
|
|
|
| -#include <string>
|
| -
|
| namespace content {
|
| class RendererClipboardDelegate;
|
|
|
| @@ -21,7 +23,7 @@ class WebClipboardImpl : public blink::WebClipboard {
|
| virtual ~WebClipboardImpl();
|
|
|
| // WebClipboard methods:
|
| - uint64 sequenceNumber(Buffer buffer) override;
|
| + uint64_t sequenceNumber(Buffer buffer) override;
|
| bool isFormatAvailable(Format format, Buffer buffer) override;
|
| blink::WebVector<blink::WebString> readAvailableTypes(
|
| Buffer buffer,
|
|
|