| 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_BASE_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 namespace ui { | 60 namespace ui { |
| 61 class LatencyInfo; | 61 class LatencyInfo; |
| 62 struct DidOverscrollParams; | 62 struct DidOverscrollParams; |
| 63 } | 63 } |
| 64 | 64 |
| 65 namespace content { | 65 namespace content { |
| 66 class BrowserAccessibilityDelegate; | 66 class BrowserAccessibilityDelegate; |
| 67 class BrowserAccessibilityManager; | 67 class BrowserAccessibilityManager; |
| 68 class RenderWidgetHostImpl; | 68 class RenderWidgetHostImpl; |
| 69 class RenderWidgetHostViewBaseObserver; | 69 class RenderWidgetHostViewBaseObserver; |
| 70 class SyntheticGesture; | |
| 71 class SyntheticGestureTarget; | 70 class SyntheticGestureTarget; |
| 72 class TextInputManager; | 71 class TextInputManager; |
| 73 class WebCursor; | 72 class WebCursor; |
| 74 struct NativeWebKeyboardEvent; | 73 struct NativeWebKeyboardEvent; |
| 75 struct TextInputState; | 74 struct TextInputState; |
| 76 | 75 |
| 77 // Basic implementation shared by concrete RenderWidgetHostView subclasses. | 76 // Basic implementation shared by concrete RenderWidgetHostView subclasses. |
| 78 class CONTENT_EXPORT RenderWidgetHostViewBase : public RenderWidgetHostView, | 77 class CONTENT_EXPORT RenderWidgetHostViewBase : public RenderWidgetHostView, |
| 79 public IPC::Listener { | 78 public IPC::Listener { |
| 80 public: | 79 public: |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 base::ObserverList<RenderWidgetHostViewBaseObserver> observers_; | 499 base::ObserverList<RenderWidgetHostViewBaseObserver> observers_; |
| 501 | 500 |
| 502 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_; | 501 base::WeakPtrFactory<RenderWidgetHostViewBase> weak_factory_; |
| 503 | 502 |
| 504 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); | 503 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); |
| 505 }; | 504 }; |
| 506 | 505 |
| 507 } // namespace content | 506 } // namespace content |
| 508 | 507 |
| 509 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ | 508 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
| OLD | NEW |