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_MAC_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MAC_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MAC_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MAC_H_ |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 #include <list> | 9 #include <list> |
10 #include <map> | 10 #include <map> |
11 #include <string> | 11 #include <string> |
12 #include <utility> | 12 #include <utility> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/mac/scoped_nsobject.h" | 15 #include "base/mac/scoped_nsobject.h" |
16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
18 #include "base/time/time.h" | 18 #include "base/time/time.h" |
19 #include "content/browser/accessibility/browser_accessibility_delegate_mac.h" | 19 #include "content/browser/accessibility/browser_accessibility_delegate_mac.h" |
20 #include "content/browser/renderer_host/display_link_mac.h" | 20 #include "content/browser/renderer_host/display_link_mac.h" |
21 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 21 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
22 #include "content/browser/renderer_host/software_frame_manager.h" | 22 #include "content/browser/renderer_host/software_frame_manager.h" |
| 23 #include "content/common/cursors/webcursor.h" |
23 #include "content/common/edit_command.h" | 24 #include "content/common/edit_command.h" |
24 #import "content/public/browser/render_widget_host_view_mac_base.h" | 25 #import "content/public/browser/render_widget_host_view_mac_base.h" |
25 #include "ipc/ipc_sender.h" | 26 #include "ipc/ipc_sender.h" |
26 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" | 27 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" |
27 #include "ui/base/cocoa/base_view.h" | 28 #include "ui/base/cocoa/base_view.h" |
28 #include "webkit/common/cursors/webcursor.h" | |
29 | 29 |
30 namespace content { | 30 namespace content { |
31 class CompositingIOSurfaceMac; | 31 class CompositingIOSurfaceMac; |
32 class CompositingIOSurfaceContext; | 32 class CompositingIOSurfaceContext; |
33 class RenderFrameHost; | 33 class RenderFrameHost; |
34 class RenderWidgetHostViewMac; | 34 class RenderWidgetHostViewMac; |
35 class RenderWidgetHostViewMacEditCommandHelper; | 35 class RenderWidgetHostViewMacEditCommandHelper; |
36 } | 36 } |
37 | 37 |
38 @class CompositingIOSurfaceLayer; | 38 @class CompositingIOSurfaceLayer; |
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
647 scoped_ptr<RenderWidgetHostViewFrameSubscriber> frame_subscriber_; | 647 scoped_ptr<RenderWidgetHostViewFrameSubscriber> frame_subscriber_; |
648 | 648 |
649 base::WeakPtrFactory<RenderWidgetHostViewMac> | 649 base::WeakPtrFactory<RenderWidgetHostViewMac> |
650 software_frame_weak_ptr_factory_; | 650 software_frame_weak_ptr_factory_; |
651 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMac); | 651 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMac); |
652 }; | 652 }; |
653 | 653 |
654 } // namespace content | 654 } // namespace content |
655 | 655 |
656 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MAC_H_ | 656 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MAC_H_ |
OLD | NEW |