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

Side by Side Diff: components/arc/arc_bridge_service_impl.h

Issue 2168533002: Remove window_manager.mojom. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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.h ('k') | components/arc/arc_bridge_service_impl.cc » ('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 #ifndef COMPONENTS_ARC_ARC_BRIDGE_SERVICE_IMPL_H_ 5 #ifndef COMPONENTS_ARC_ARC_BRIDGE_SERVICE_IMPL_H_
6 #define COMPONENTS_ARC_ARC_BRIDGE_SERVICE_IMPL_H_ 6 #define COMPONENTS_ARC_ARC_BRIDGE_SERVICE_IMPL_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 void OnNotificationsInstanceReady( 62 void OnNotificationsInstanceReady(
63 mojom::NotificationsInstancePtr notifications_ptr) override; 63 mojom::NotificationsInstancePtr notifications_ptr) override;
64 void OnObbMounterInstanceReady( 64 void OnObbMounterInstanceReady(
65 mojom::ObbMounterInstancePtr obb_mounter_ptr) override; 65 mojom::ObbMounterInstancePtr obb_mounter_ptr) override;
66 void OnPolicyInstanceReady(mojom::PolicyInstancePtr policy_ptr) override; 66 void OnPolicyInstanceReady(mojom::PolicyInstancePtr policy_ptr) override;
67 void OnPowerInstanceReady(mojom::PowerInstancePtr power_ptr) override; 67 void OnPowerInstanceReady(mojom::PowerInstancePtr power_ptr) override;
68 void OnProcessInstanceReady(mojom::ProcessInstancePtr process_ptr) override; 68 void OnProcessInstanceReady(mojom::ProcessInstancePtr process_ptr) override;
69 void OnStorageManagerInstanceReady( 69 void OnStorageManagerInstanceReady(
70 mojom::StorageManagerInstancePtr storage_manager_ptr) override; 70 mojom::StorageManagerInstancePtr storage_manager_ptr) override;
71 void OnVideoInstanceReady(mojom::VideoInstancePtr video_ptr) override; 71 void OnVideoInstanceReady(mojom::VideoInstancePtr video_ptr) override;
72 void OnWindowManagerInstanceReady(
73 mojom::WindowManagerInstancePtr window_manager_ptr) override;
74 72
75 private: 73 private:
76 friend class ArcBridgeTest; 74 friend class ArcBridgeTest;
77 FRIEND_TEST_ALL_PREFIXES(ArcBridgeTest, Restart); 75 FRIEND_TEST_ALL_PREFIXES(ArcBridgeTest, Restart);
78 FRIEND_TEST_ALL_PREFIXES(ArcBridgeTest, OnBridgeStopped); 76 FRIEND_TEST_ALL_PREFIXES(ArcBridgeTest, OnBridgeStopped);
79 77
80 // If all pre-requisites are true (ARC is available, it has been enabled, and 78 // If all pre-requisites are true (ARC is available, it has been enabled, and
81 // the session has started), and ARC is stopped, start ARC. If ARC is running 79 // the session has started), and ARC is stopped, start ARC. If ARC is running
82 // and the pre-requisites stop being true, stop ARC. 80 // and the pre-requisites stop being true, stop ARC.
83 void PrerequisitesChanged(); 81 void PrerequisitesChanged();
(...skipping 27 matching lines...) Expand all
111 109
112 // WeakPtrFactory to use callbacks. 110 // WeakPtrFactory to use callbacks.
113 base::WeakPtrFactory<ArcBridgeServiceImpl> weak_factory_; 111 base::WeakPtrFactory<ArcBridgeServiceImpl> weak_factory_;
114 112
115 DISALLOW_COPY_AND_ASSIGN(ArcBridgeServiceImpl); 113 DISALLOW_COPY_AND_ASSIGN(ArcBridgeServiceImpl);
116 }; 114 };
117 115
118 } // namespace arc 116 } // namespace arc
119 117
120 #endif // COMPONENTS_ARC_ARC_BRIDGE_SERVICE_IMPL_H_ 118 #endif // COMPONENTS_ARC_ARC_BRIDGE_SERVICE_IMPL_H_
OLDNEW
« no previous file with comments | « components/arc/arc_bridge_service.h ('k') | components/arc/arc_bridge_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698