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

Unified Diff: content/renderer/webclipboard_impl.h

Issue 1547073003: Switch to standard integer types in content/renderer/. (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 | « content/renderer/web_ui_extension_data.h ('k') | content/renderer/webclipboard_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « content/renderer/web_ui_extension_data.h ('k') | content/renderer/webclipboard_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698