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

Unified Diff: remoting/host/chromeos/clipboard_aura.h

Issue 1547473005: Switch to standard integer types in remoting/host/. (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 | « remoting/host/chromeos/aura_desktop_capturer_unittest.cc ('k') | remoting/host/chromeos/clipboard_aura.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/chromeos/clipboard_aura.h
diff --git a/remoting/host/chromeos/clipboard_aura.h b/remoting/host/chromeos/clipboard_aura.h
index ed408e3752a3a0e0bb6e12f5c8006b54b3586c57..6642f655b79492b355b407b8446b8392c1552998 100644
--- a/remoting/host/chromeos/clipboard_aura.h
+++ b/remoting/host/chromeos/clipboard_aura.h
@@ -5,6 +5,9 @@
#ifndef REMOTING_HOST_CLIPBOARD_AURA_H_
#define REMOTING_HOST_CLIPBOARD_AURA_H_
+#include <stdint.h>
+
+#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/threading/thread_checker.h"
#include "base/timer/timer.h"
@@ -44,7 +47,7 @@ class ClipboardAura : public Clipboard {
base::ThreadChecker thread_checker_;
scoped_ptr<protocol::ClipboardStub> client_clipboard_;
base::RepeatingTimer clipboard_polling_timer_;
- uint64 current_change_count_;
+ uint64_t current_change_count_;
base::TimeDelta polling_interval_;
DISALLOW_COPY_AND_ASSIGN(ClipboardAura);
« no previous file with comments | « remoting/host/chromeos/aura_desktop_capturer_unittest.cc ('k') | remoting/host/chromeos/clipboard_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698