| 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/memory/scoped_nsobject.h" | 15 #include "base/memory/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.h" | 18 #include "base/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/render_widget_host_view_base.h" | 20 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
| 21 #include "content/common/edit_command.h" | 21 #include "content/common/edit_command.h" |
| 22 #import "content/public/browser/render_widget_host_view_mac_base.h" | 22 #import "content/public/browser/render_widget_host_view_mac_base.h" |
| 23 #include "ipc/ipc_sender.h" | 23 #include "ipc/ipc_sender.h" |
| 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" | 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" |
| 25 #include "ui/base/cocoa/base_view.h" | 25 #include "ui/base/cocoa/base_view.h" |
| 26 #include "webkit/glue/webcursor.h" | 26 #include "webkit/common/cursors/webcursor.h" |
| 27 | 27 |
| 28 namespace content { | 28 namespace content { |
| 29 class CompositingIOSurfaceMac; | 29 class CompositingIOSurfaceMac; |
| 30 class RenderWidgetHostViewMac; | 30 class RenderWidgetHostViewMac; |
| 31 class RenderWidgetHostViewMacEditCommandHelper; | 31 class RenderWidgetHostViewMacEditCommandHelper; |
| 32 } | 32 } |
| 33 | 33 |
| 34 @class FullscreenWindowManager; | 34 @class FullscreenWindowManager; |
| 35 @protocol RenderWidgetHostViewMacDelegate; | 35 @protocol RenderWidgetHostViewMacDelegate; |
| 36 @class ToolTip; | 36 @class ToolTip; |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 | 492 |
| 493 // Subscriber that listens to frame presentation events. | 493 // Subscriber that listens to frame presentation events. |
| 494 scoped_ptr<RenderWidgetHostViewFrameSubscriber> frame_subscriber_; | 494 scoped_ptr<RenderWidgetHostViewFrameSubscriber> frame_subscriber_; |
| 495 | 495 |
| 496 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMac); | 496 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMac); |
| 497 }; | 497 }; |
| 498 | 498 |
| 499 } // namespace content | 499 } // namespace content |
| 500 | 500 |
| 501 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MAC_H_ | 501 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MAC_H_ |
| OLD | NEW |