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

Side by Side Diff: components/arc/input/arc_input_bridge_impl.cc

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months 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 unified diff | Download patch
« no previous file with comments | « components/arc/arc_bridge_service_unittest.cc ('k') | components/arc/test/fake_app_instance.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/arc/input/arc_input_bridge_impl.h" 5 #include "components/arc/input/arc_input_bridge_impl.h"
6 6
7 #include <linux/input.h> 7 #include <linux/input.h>
8 #include <fcntl.h> 8 #include <fcntl.h>
9 #include <stddef.h>
9 10
10 #include <string> 11 #include <string>
11 12
12 #include "base/logging.h" 13 #include "base/logging.h"
13 #include "base/posix/eintr_wrapper.h" 14 #include "base/posix/eintr_wrapper.h"
14 #include "base/thread_task_runner_handle.h" 15 #include "base/thread_task_runner_handle.h"
15 #include "base/time/time.h" 16 #include "base/time/time.h"
16 #include "components/arc/arc_bridge_service.h" 17 #include "components/arc/arc_bridge_service.h"
17 #include "third_party/mojo/src/mojo/edk/embedder/embedder.h" 18 #include "third_party/mojo/src/mojo/edk/embedder/embedder.h"
18 #include "ui/aura/env.h" 19 #include "ui/aura/env.h"
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 } 364 }
364 return write_fd; 365 return write_fd;
365 } 366 }
366 367
367 scoped_ptr<ArcInputBridge> ArcInputBridge::Create( 368 scoped_ptr<ArcInputBridge> ArcInputBridge::Create(
368 ArcBridgeService* arc_bridge_service) { 369 ArcBridgeService* arc_bridge_service) {
369 return make_scoped_ptr(new ArcInputBridgeImpl(arc_bridge_service)); 370 return make_scoped_ptr(new ArcInputBridgeImpl(arc_bridge_service));
370 } 371 }
371 372
372 } // namespace arc 373 } // namespace arc
OLDNEW
« no previous file with comments | « components/arc/arc_bridge_service_unittest.cc ('k') | components/arc/test/fake_app_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698