OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/callback.h" | 13 #include "base/callback.h" |
14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
15 #include "base/memory/linked_ptr.h" | 15 #include "base/memory/linked_ptr.h" |
16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
17 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
18 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
19 #include "cc/layers/delegated_frame_provider.h" | 19 #include "cc/layers/delegated_frame_provider.h" |
20 #include "cc/layers/delegated_frame_resource_collection.h" | 20 #include "cc/layers/delegated_frame_resource_collection.h" |
21 #include "cc/resources/texture_mailbox.h" | 21 #include "cc/resources/texture_mailbox.h" |
22 #include "content/browser/accessibility/browser_accessibility_manager.h" | 22 #include "content/browser/accessibility/browser_accessibility_manager.h" |
23 #include "content/browser/compositor/image_transport_factory.h" | 23 #include "content/browser/aura/image_transport_factory.h" |
24 #include "content/browser/compositor/owned_mailbox.h" | 24 #include "content/browser/aura/owned_mailbox.h" |
25 #include "content/browser/renderer_host/delegated_frame_evictor.h" | 25 #include "content/browser/renderer_host/delegated_frame_evictor.h" |
26 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 26 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
27 #include "content/browser/renderer_host/software_frame_manager.h" | 27 #include "content/browser/renderer_host/software_frame_manager.h" |
28 #include "content/common/content_export.h" | 28 #include "content/common/content_export.h" |
29 #include "content/common/gpu/client/gl_helper.h" | 29 #include "content/common/gpu/client/gl_helper.h" |
30 #include "third_party/skia/include/core/SkRegion.h" | 30 #include "third_party/skia/include/core/SkRegion.h" |
31 #include "ui/aura/client/activation_change_observer.h" | 31 #include "ui/aura/client/activation_change_observer.h" |
32 #include "ui/aura/client/activation_delegate.h" | 32 #include "ui/aura/client/activation_delegate.h" |
33 #include "ui/aura/client/cursor_client_observer.h" | 33 #include "ui/aura/client/cursor_client_observer.h" |
34 #include "ui/aura/client/focus_change_observer.h" | 34 #include "ui/aura/client/focus_change_observer.h" |
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
801 // passed to windowless plugins like Flash/Silverlight, etc as the | 801 // passed to windowless plugins like Flash/Silverlight, etc as the |
802 // container window. | 802 // container window. |
803 HWND plugin_parent_window_; | 803 HWND plugin_parent_window_; |
804 #endif | 804 #endif |
805 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 805 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
806 }; | 806 }; |
807 | 807 |
808 } // namespace content | 808 } // namespace content |
809 | 809 |
810 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 810 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |