| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_CHROMEOS_UI_FOCUS_RING_LAYER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_UI_FOCUS_RING_LAYER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_UI_FOCUS_RING_LAYER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_UI_FOCUS_RING_LAYER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "ui/compositor/layer_delegate.h" | 10 #include "ui/compositor/layer_delegate.h" |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 aura::Window* root_window() { return root_window_; } | 43 aura::Window* root_window() { return root_window_; } |
| 44 | 44 |
| 45 protected: | 45 protected: |
| 46 // Updates |root_window_| and creates |layer_| if it doesn't exist, | 46 // Updates |root_window_| and creates |layer_| if it doesn't exist, |
| 47 // or if the root window has changed. Moves the layer to the top if | 47 // or if the root window has changed. Moves the layer to the top if |
| 48 // it wasn't there already. | 48 // it wasn't there already. |
| 49 void CreateOrUpdateLayer(aura::Window* root_window, const char* layer_name); | 49 void CreateOrUpdateLayer(aura::Window* root_window, const char* layer_name); |
| 50 | 50 |
| 51 private: | 51 private: |
| 52 // ui::LayerDelegate overrides: | 52 // ui::LayerDelegate overrides: |
| 53 void OnPaintLayer(gfx::Canvas* canvas) override; | 53 void OnPaintLayer(const ui::PaintContext& context) override; |
| 54 void OnDelegatedFrameDamage(const gfx::Rect& damage_rect_in_dip) override; | 54 void OnDelegatedFrameDamage(const gfx::Rect& damage_rect_in_dip) override; |
| 55 void OnDeviceScaleFactorChanged(float device_scale_factor) override; | 55 void OnDeviceScaleFactorChanged(float device_scale_factor) override; |
| 56 base::Closure PrepareForLayerBoundsChange() override; | 56 base::Closure PrepareForLayerBoundsChange() override; |
| 57 | 57 |
| 58 // The object that owns this layer. | 58 // The object that owns this layer. |
| 59 FocusRingLayerDelegate* delegate_; | 59 FocusRingLayerDelegate* delegate_; |
| 60 | 60 |
| 61 // The current root window containing the focused object. | 61 // The current root window containing the focused object. |
| 62 aura::Window* root_window_; | 62 aura::Window* root_window_; |
| 63 | 63 |
| 64 // The current layer. | 64 // The current layer. |
| 65 scoped_ptr<ui::Layer> layer_; | 65 scoped_ptr<ui::Layer> layer_; |
| 66 | 66 |
| 67 // The bounding rectangle of the focused object, in |root_window_| | 67 // The bounding rectangle of the focused object, in |root_window_| |
| 68 // coordinates. | 68 // coordinates. |
| 69 gfx::Rect focus_ring_; | 69 gfx::Rect focus_ring_; |
| 70 | 70 |
| 71 DISALLOW_COPY_AND_ASSIGN(FocusRingLayer); | 71 DISALLOW_COPY_AND_ASSIGN(FocusRingLayer); |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } // namespace chromeos | 74 } // namespace chromeos |
| 75 | 75 |
| 76 #endif // CHROME_BROWSER_CHROMEOS_UI_FOCUS_RING_LAYER_H_ | 76 #endif // CHROME_BROWSER_CHROMEOS_UI_FOCUS_RING_LAYER_H_ |
| OLD | NEW |