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 <IOSurface/IOSurface.h> | 9 #include <IOSurface/IOSurface.h> |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 22 matching lines...) Expand all Loading... |
33 #include "ipc/ipc_sender.h" | 33 #include "ipc/ipc_sender.h" |
34 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" | 34 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" |
35 #include "ui/accelerated_widget_mac/accelerated_widget_mac.h" | 35 #include "ui/accelerated_widget_mac/accelerated_widget_mac.h" |
36 #include "ui/accelerated_widget_mac/display_link_mac.h" | 36 #include "ui/accelerated_widget_mac/display_link_mac.h" |
37 #import "ui/base/cocoa/command_dispatcher.h" | 37 #import "ui/base/cocoa/command_dispatcher.h" |
38 #include "ui/base/cocoa/remote_layer_api.h" | 38 #include "ui/base/cocoa/remote_layer_api.h" |
39 #import "ui/base/cocoa/tool_tip_base_view.h" | 39 #import "ui/base/cocoa/tool_tip_base_view.h" |
40 #include "ui/display/display_observer.h" | 40 #include "ui/display/display_observer.h" |
41 | 41 |
42 namespace content { | 42 namespace content { |
| 43 class RenderWidgetHost; |
43 class RenderWidgetHostImpl; | 44 class RenderWidgetHostImpl; |
44 class RenderWidgetHostViewMac; | 45 class RenderWidgetHostViewMac; |
45 class RenderWidgetHostViewMacEditCommandHelper; | 46 class RenderWidgetHostViewMacEditCommandHelper; |
46 class WebContents; | 47 class WebContents; |
47 struct TextInputState; | 48 struct TextInputState; |
48 } | 49 } |
49 | 50 |
50 namespace ui { | 51 namespace ui { |
51 class Compositor; | 52 class Compositor; |
52 class Layer; | 53 class Layer; |
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 | 539 |
539 // Factory used to safely scope delayed calls to ShutdownHost(). | 540 // Factory used to safely scope delayed calls to ShutdownHost(). |
540 base::WeakPtrFactory<RenderWidgetHostViewMac> weak_factory_; | 541 base::WeakPtrFactory<RenderWidgetHostViewMac> weak_factory_; |
541 | 542 |
542 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMac); | 543 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMac); |
543 }; | 544 }; |
544 | 545 |
545 } // namespace content | 546 } // namespace content |
546 | 547 |
547 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MAC_H_ | 548 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MAC_H_ |
OLD | NEW |