OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_TOUCH_FRAME_TOUCH_BROWSER_FRAME_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_TOUCH_FRAME_TOUCH_BROWSER_FRAME_VIEW_H_ |
6 #define CHROME_BROWSER_UI_TOUCH_FRAME_TOUCH_BROWSER_FRAME_VIEW_H_ | 6 #define CHROME_BROWSER_UI_TOUCH_FRAME_TOUCH_BROWSER_FRAME_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
| 9 #include "chrome/browser/tabs/tab_strip_model_observer.h" |
9 #include "chrome/browser/ui/views/frame/opaque_browser_frame_view.h" | 10 #include "chrome/browser/ui/views/frame/opaque_browser_frame_view.h" |
10 #include "chrome/browser/tabs/tab_strip_model_observer.h" | 11 #include "content/common/notification_observer.h" |
11 #include "chrome/common/notification_observer.h" | 12 #include "content/common/notification_registrar.h" |
12 #include "chrome/common/notification_registrar.h" | |
13 #include "ui/base/animation/animation_delegate.h" | 13 #include "ui/base/animation/animation_delegate.h" |
14 #include "views/focus/focus_manager.h" | 14 #include "views/focus/focus_manager.h" |
15 | 15 |
16 class BrowserFrame; | 16 class BrowserFrame; |
17 class BrowserView; | 17 class BrowserView; |
18 class KeyboardContainerView; | 18 class KeyboardContainerView; |
19 class NotificationDetails; | 19 class NotificationDetails; |
20 class NotificationSource; | 20 class NotificationSource; |
21 | 21 |
22 namespace ui { | 22 namespace ui { |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 bool focus_listener_added_; | 75 bool focus_listener_added_; |
76 KeyboardContainerView* keyboard_; | 76 KeyboardContainerView* keyboard_; |
77 NotificationRegistrar registrar_; | 77 NotificationRegistrar registrar_; |
78 | 78 |
79 scoped_ptr<ui::SlideAnimation> animation_; | 79 scoped_ptr<ui::SlideAnimation> animation_; |
80 | 80 |
81 DISALLOW_COPY_AND_ASSIGN(TouchBrowserFrameView); | 81 DISALLOW_COPY_AND_ASSIGN(TouchBrowserFrameView); |
82 }; | 82 }; |
83 | 83 |
84 #endif // CHROME_BROWSER_UI_TOUCH_FRAME_TOUCH_BROWSER_FRAME_VIEW_H_ | 84 #endif // CHROME_BROWSER_UI_TOUCH_FRAME_TOUCH_BROWSER_FRAME_VIEW_H_ |
OLD | NEW |