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

Side by Side Diff: components/arc/arc_bridge_bootstrap.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
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/arc_bridge_bootstrap.h" 5 #include "components/arc/arc_bridge_bootstrap.h"
6 6
7 #include <fcntl.h> 7 #include <fcntl.h>
8 8
9 #include <utility> 9 #include <utility>
10 10
11 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
12 #include "base/files/file_util.h" 12 #include "base/files/file_util.h"
13 #include "base/location.h" 13 #include "base/location.h"
14 #include "base/macros.h"
14 #include "base/task_runner_util.h" 15 #include "base/task_runner_util.h"
15 #include "base/thread_task_runner_handle.h" 16 #include "base/thread_task_runner_handle.h"
16 #include "base/threading/thread_checker.h" 17 #include "base/threading/thread_checker.h"
17 #include "base/threading/worker_pool.h" 18 #include "base/threading/worker_pool.h"
18 #include "chromeos/dbus/dbus_method_call_status.h" 19 #include "chromeos/dbus/dbus_method_call_status.h"
19 #include "chromeos/dbus/dbus_thread_manager.h" 20 #include "chromeos/dbus/dbus_thread_manager.h"
20 #include "chromeos/dbus/session_manager_client.h" 21 #include "chromeos/dbus/session_manager_client.h"
21 #include "ipc/unix_domain_socket_util.h" 22 #include "ipc/unix_domain_socket_util.h"
22 #include "mojo/public/cpp/bindings/binding.h" 23 #include "mojo/public/cpp/bindings/binding.h"
23 #include "third_party/mojo/src/mojo/edk/embedder/embedder.h" 24 #include "third_party/mojo/src/mojo/edk/embedder/embedder.h"
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 280
280 ArcBridgeBootstrap::ArcBridgeBootstrap() {} 281 ArcBridgeBootstrap::ArcBridgeBootstrap() {}
281 ArcBridgeBootstrap::~ArcBridgeBootstrap() {} 282 ArcBridgeBootstrap::~ArcBridgeBootstrap() {}
282 283
283 // static 284 // static
284 scoped_ptr<ArcBridgeBootstrap> ArcBridgeBootstrap::Create() { 285 scoped_ptr<ArcBridgeBootstrap> ArcBridgeBootstrap::Create() {
285 return make_scoped_ptr(new ArcBridgeBootstrapImpl()); 286 return make_scoped_ptr(new ArcBridgeBootstrapImpl());
286 } 287 }
287 288
288 } // namespace arc 289 } // namespace arc
OLDNEW
« no previous file with comments | « components/app_modal/views/javascript_app_modal_dialog_views.h ('k') | components/arc/arc_bridge_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698