| OLD | NEW |
| 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 CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_CHROMEVOX_PANEL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_CHROMEVOX_PANEL_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_CHROMEVOX_PANEL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_CHROMEVOX_PANEL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "ui/gfx/display_observer.h" | 11 #include "ui/gfx/display_observer.h" |
| 10 #include "ui/views/widget/widget_delegate.h" | 12 #include "ui/views/widget/widget_delegate.h" |
| 11 | 13 |
| 12 class ChromeVoxPanelWebContentsObserver; | 14 class ChromeVoxPanelWebContentsObserver; |
| 13 | 15 |
| 14 namespace content { | 16 namespace content { |
| 15 class BrowserContext; | 17 class BrowserContext; |
| 16 } | 18 } |
| 17 | 19 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 52 |
| 51 views::Widget* widget_; | 53 views::Widget* widget_; |
| 52 scoped_ptr<ChromeVoxPanelWebContentsObserver> web_contents_observer_; | 54 scoped_ptr<ChromeVoxPanelWebContentsObserver> web_contents_observer_; |
| 53 views::View* web_view_; | 55 views::View* web_view_; |
| 54 bool fullscreen_; | 56 bool fullscreen_; |
| 55 | 57 |
| 56 DISALLOW_COPY_AND_ASSIGN(ChromeVoxPanel); | 58 DISALLOW_COPY_AND_ASSIGN(ChromeVoxPanel); |
| 57 }; | 59 }; |
| 58 | 60 |
| 59 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_CHROMEVOX_PANEL_H_ | 61 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_CHROMEVOX_PANEL_H_ |
| OLD | NEW |