| 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.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/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/public/web/WebCompositionUnderline.h" | 24 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" |
| 25 #include "ui/base/cocoa/base_view.h" | 25 #include "ui/base/cocoa/base_view.h" |
| 26 #include "webkit/common/cursors/webcursor.h" | 26 #include "webkit/common/cursors/webcursor.h" |
| 27 | 27 |
| 28 namespace content { | 28 namespace content { |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 | 537 |
| 538 // Subscriber that listens to frame presentation events. | 538 // Subscriber that listens to frame presentation events. |
| 539 scoped_ptr<RenderWidgetHostViewFrameSubscriber> frame_subscriber_; | 539 scoped_ptr<RenderWidgetHostViewFrameSubscriber> frame_subscriber_; |
| 540 | 540 |
| 541 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMac); | 541 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMac); |
| 542 }; | 542 }; |
| 543 | 543 |
| 544 } // namespace content | 544 } // namespace content |
| 545 | 545 |
| 546 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MAC_H_ | 546 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MAC_H_ |
| OLD | NEW |