| 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 <list> | 10 #include <list> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "content/browser/compositor/delegated_frame_host.h" | 22 #include "content/browser/compositor/delegated_frame_host.h" |
| 23 #include "content/browser/renderer_host/input/mouse_wheel_rails_filter_mac.h" | 23 #include "content/browser/renderer_host/input/mouse_wheel_rails_filter_mac.h" |
| 24 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 24 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
| 25 #include "content/common/content_export.h" | 25 #include "content/common/content_export.h" |
| 26 #include "content/common/cursors/webcursor.h" | 26 #include "content/common/cursors/webcursor.h" |
| 27 #include "content/common/edit_command.h" | 27 #include "content/common/edit_command.h" |
| 28 #include "ipc/ipc_sender.h" | 28 #include "ipc/ipc_sender.h" |
| 29 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" | 29 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" |
| 30 #include "ui/accelerated_widget_mac/accelerated_widget_mac.h" | 30 #include "ui/accelerated_widget_mac/accelerated_widget_mac.h" |
| 31 #include "ui/accelerated_widget_mac/display_link_mac.h" | 31 #include "ui/accelerated_widget_mac/display_link_mac.h" |
| 32 #include "ui/accelerated_widget_mac/io_surface_layer.h" | |
| 33 #import "ui/base/cocoa/command_dispatcher.h" | 32 #import "ui/base/cocoa/command_dispatcher.h" |
| 34 #include "ui/base/cocoa/remote_layer_api.h" | 33 #include "ui/base/cocoa/remote_layer_api.h" |
| 35 #import "ui/base/cocoa/tool_tip_base_view.h" | 34 #import "ui/base/cocoa/tool_tip_base_view.h" |
| 36 #include "ui/gfx/display_observer.h" | 35 #include "ui/gfx/display_observer.h" |
| 37 | 36 |
| 38 struct ViewHostMsg_TextInputState_Params; | 37 struct ViewHostMsg_TextInputState_Params; |
| 39 | 38 |
| 40 namespace content { | 39 namespace content { |
| 41 class RenderWidgetHostImpl; | 40 class RenderWidgetHostImpl; |
| 42 class RenderWidgetHostViewMac; | 41 class RenderWidgetHostViewMac; |
| (...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 | 602 |
| 604 // Factory used to safely scope delayed calls to ShutdownHost(). | 603 // Factory used to safely scope delayed calls to ShutdownHost(). |
| 605 base::WeakPtrFactory<RenderWidgetHostViewMac> weak_factory_; | 604 base::WeakPtrFactory<RenderWidgetHostViewMac> weak_factory_; |
| 606 | 605 |
| 607 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMac); | 606 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMac); |
| 608 }; | 607 }; |
| 609 | 608 |
| 610 } // namespace content | 609 } // namespace content |
| 611 | 610 |
| 612 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MAC_H_ | 611 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MAC_H_ |
| OLD | NEW |