Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_ARC_FOCUS_HIGHLIGHT_ARC_FOCUS_HIGHLIGHT_BRIDGE_H _ | |
| 6 #define CHROME_BROWSER_CHROMEOS_ARC_FOCUS_HIGHLIGHT_ARC_FOCUS_HIGHLIGHT_BRIDGE_H _ | |
| 7 | |
| 8 #include "components/arc/arc_service.h" | |
| 9 #include "components/arc/common/focus_highlight.mojom.h" | |
| 10 #include "components/arc/instance_holder.h" | |
| 11 #include "mojo/public/cpp/bindings/binding.h" | |
| 12 | |
| 13 namespace arc { | |
| 14 | |
| 15 class ArcBridgeService; | |
| 16 | |
| 17 class ArcFocusHighlightBridge | |
| 18 : public ArcService, | |
| 19 public mojom::FocusHighlightHost, | |
| 20 public InstanceHolder<mojom::FocusHighlightInstance>::Observer { | |
| 21 public: | |
| 22 explicit ArcFocusHighlightBridge(ArcBridgeService* bridge_service); | |
| 23 ~ArcFocusHighlightBridge() override; | |
| 24 | |
| 25 // InstanceHolder::Observer::OnInstanceReady overrides. | |
|
Luis Héctor Chávez
2016/12/07 17:58:56
nit:
// InstanceHolder<mojom::FocusHighlightInsta
yawano
2017/01/11 10:31:33
Done.
| |
| 26 void OnInstanceReady() override; | |
| 27 | |
| 28 // InstanceHolder::Observer::OnInstanceClosed overrides. | |
| 29 void OnInstanceClosed() override; | |
| 30 | |
| 31 void OnViewFocused(const gfx::Rect& rect) override; | |
|
hidehiko
2016/12/08 14:54:59
nit: "// mojom::FocusHighlightHost" too?
yawano
2017/01/11 10:31:33
Done.
| |
| 32 | |
| 33 private: | |
| 34 mojo::Binding<mojom::FocusHighlightHost> binding_; | |
| 35 | |
| 36 DISALLOW_COPY_AND_ASSIGN(ArcFocusHighlightBridge); | |
| 37 }; | |
| 38 | |
| 39 } // namespace arc | |
| 40 | |
| 41 #endif // CHROME_BROWSER_CHROMEOS_ARC_FOCUS_HIGHLIGHT_ARC_FOCUS_HIGHLIGHT_BRIDG E_H_ | |
| OLD | NEW |