| 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_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_VIEWS_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_VIEWS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/timer.h" | 10 #include "base/timer.h" |
| 11 #include "chrome/browser/tab_contents/render_view_host_delegate_helper.h" | 11 #include "chrome/browser/tab_contents/render_view_host_delegate_helper.h" |
| 12 #include "chrome/browser/ui/views/tab_contents/native_tab_contents_view_delegate
.h" | 12 #include "chrome/browser/ui/views/tab_contents/native_tab_contents_view_delegate
.h" |
| 13 #include "content/browser/tab_contents/tab_contents_view.h" | 13 #include "content/browser/tab_contents/tab_contents_view.h" |
| 14 #include "ui/views/widget/widget.h" | 14 #include "views/widget/widget.h" |
| 15 | 15 |
| 16 class ConstrainedWindowGtk; | 16 class ConstrainedWindowGtk; |
| 17 class NativeTabContentsView; | 17 class NativeTabContentsView; |
| 18 class RenderViewContextMenuViews; | 18 class RenderViewContextMenuViews; |
| 19 class SkBitmap; | 19 class SkBitmap; |
| 20 struct WebDropData; | 20 struct WebDropData; |
| 21 namespace gfx { | 21 namespace gfx { |
| 22 class Point; | 22 class Point; |
| 23 class Size; | 23 class Size; |
| 24 } | 24 } |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 mutable const views::FocusManager* focus_manager_; | 169 mutable const views::FocusManager* focus_manager_; |
| 170 | 170 |
| 171 // The overlaid view. Owned by the caller of |InstallOverlayView|; this is a | 171 // The overlaid view. Owned by the caller of |InstallOverlayView|; this is a |
| 172 // weak reference. | 172 // weak reference. |
| 173 views::Widget* overlaid_view_; | 173 views::Widget* overlaid_view_; |
| 174 | 174 |
| 175 DISALLOW_COPY_AND_ASSIGN(TabContentsViewViews); | 175 DISALLOW_COPY_AND_ASSIGN(TabContentsViewViews); |
| 176 }; | 176 }; |
| 177 | 177 |
| 178 #endif // CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_VIEWS_H_ | 178 #endif // CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_VIEW_VIEWS_H_ |
| OLD | NEW |