Chromium Code Reviews| Index: components/arc/arc_bridge_service.h |
| diff --git a/components/arc/arc_bridge_service.h b/components/arc/arc_bridge_service.h |
| index b74bea6a5f0991decd4b4430df7376003aa81068..1621397aa6e0cc822787e108fa5cbeb5ae1df2d0 100644 |
| --- a/components/arc/arc_bridge_service.h |
| +++ b/components/arc/arc_bridge_service.h |
| @@ -48,9 +48,6 @@ class WallpaperInstance; |
| } // namespace mojom |
| -class ArcSessionObserver; |
| -class ArcSessionRunner; |
| - |
| // The Chrome-side service that handles ARC instances and ARC bridge creation. |
|
Luis Héctor Chávez
2016/12/22 18:29:56
Not anymore :)
hidehiko
2016/12/22 19:04:12
Oops. Updated.
|
| // This service handles the lifetime of ARC instances and sets up the |
| // communication channel (the ARC bridge) used to send and receive messages. |
| @@ -66,23 +63,6 @@ class ArcBridgeService { |
| // Return true if ARC is available on the current board. |
| static bool GetAvailable(const base::CommandLine* command_line); |
| - // Initializes the ArcSessionRunner with the given instance. |
| - // This must be called before following proxy methods. |
| - void InitializeArcSessionRunner( |
| - std::unique_ptr<ArcSessionRunner> arc_session_runner); |
| - |
| - // Proxies the method to ArcSessionRunner. See details in the |
| - // ArcSessionRunner's comment. |
| - // TODO(hidehiko): Move the ownership from ArcBridgeService to |
| - // ArcSessionManager, and remove these methods. |
| - void AddObserver(ArcSessionObserver* observer); |
| - void RemoveObserver(ArcSessionObserver* observer); |
| - void RequestStart(); |
| - void RequestStop(); |
| - void OnShutdown(); |
| - bool ready() const; |
| - bool stopped() const; |
| - |
| InstanceHolder<mojom::AppInstance>* app() { return &app_; } |
| InstanceHolder<mojom::AudioInstance>* audio() { return &audio_; } |
| InstanceHolder<mojom::AuthInstance>* auth() { return &auth_; } |
| @@ -151,8 +131,6 @@ class ArcBridgeService { |
| InstanceHolder<mojom::VideoInstance> video_; |
| InstanceHolder<mojom::WallpaperInstance> wallpaper_; |
| - std::unique_ptr<ArcSessionRunner> arc_session_runner_; |
| - |
| DISALLOW_COPY_AND_ASSIGN(ArcBridgeService); |
| }; |