| 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 24 matching lines...) Expand all Loading... |
| 35 #include "ui/base/ime/text_input_mode.h" | 35 #include "ui/base/ime/text_input_mode.h" |
| 36 #include "ui/base/ime/text_input_type.h" | 36 #include "ui/base/ime/text_input_type.h" |
| 37 #include "ui/display/display.h" | 37 #include "ui/display/display.h" |
| 38 #include "ui/gfx/geometry/rect.h" | 38 #include "ui/gfx/geometry/rect.h" |
| 39 #include "ui/gfx/native_widget_types.h" | 39 #include "ui/gfx/native_widget_types.h" |
| 40 #include "ui/gfx/range/range.h" | 40 #include "ui/gfx/range/range.h" |
| 41 #include "ui/surface/transport_dib.h" | 41 #include "ui/surface/transport_dib.h" |
| 42 | 42 |
| 43 class SkBitmap; | 43 class SkBitmap; |
| 44 | 44 |
| 45 struct AccessibilityHostMsg_EventParams; | |
| 46 struct ViewHostMsg_SelectionBounds_Params; | 45 struct ViewHostMsg_SelectionBounds_Params; |
| 47 | 46 |
| 48 namespace media { | 47 namespace media { |
| 49 class VideoFrame; | 48 class VideoFrame; |
| 50 } | 49 } |
| 51 | 50 |
| 52 namespace blink { | 51 namespace blink { |
| 53 class WebMouseEvent; | 52 class WebMouseEvent; |
| 54 class WebMouseWheelEvent; | 53 class WebMouseWheelEvent; |
| 55 } | 54 } |
| (...skipping 444 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 |