| 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_RENDERER_RENDER_WIDGET_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ | 6 #define CONTENT_RENDERER_RENDER_WIDGET_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #include "third_party/WebKit/public/platform/WebDisplayMode.h" | 32 #include "third_party/WebKit/public/platform/WebDisplayMode.h" |
| 33 #include "third_party/WebKit/public/platform/WebRect.h" | 33 #include "third_party/WebKit/public/platform/WebRect.h" |
| 34 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" | 34 #include "third_party/WebKit/public/web/WebCompositionUnderline.h" |
| 35 #include "third_party/WebKit/public/web/WebInputEvent.h" | 35 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 36 #include "third_party/WebKit/public/web/WebPopupType.h" | 36 #include "third_party/WebKit/public/web/WebPopupType.h" |
| 37 #include "third_party/WebKit/public/web/WebTextDirection.h" | 37 #include "third_party/WebKit/public/web/WebTextDirection.h" |
| 38 #include "third_party/WebKit/public/web/WebTextInputInfo.h" | 38 #include "third_party/WebKit/public/web/WebTextInputInfo.h" |
| 39 #include "third_party/WebKit/public/web/WebTouchAction.h" | 39 #include "third_party/WebKit/public/web/WebTouchAction.h" |
| 40 #include "third_party/WebKit/public/web/WebWidget.h" | 40 #include "third_party/WebKit/public/web/WebWidget.h" |
| 41 #include "third_party/WebKit/public/web/WebWidgetClient.h" | 41 #include "third_party/WebKit/public/web/WebWidgetClient.h" |
| 42 #include "third_party/skia/include/core/SkBitmap.h" | |
| 43 #include "ui/base/ime/text_input_mode.h" | 42 #include "ui/base/ime/text_input_mode.h" |
| 44 #include "ui/base/ime/text_input_type.h" | 43 #include "ui/base/ime/text_input_type.h" |
| 45 #include "ui/base/ui_base_types.h" | 44 #include "ui/base/ui_base_types.h" |
| 46 #include "ui/gfx/geometry/rect.h" | 45 #include "ui/gfx/geometry/rect.h" |
| 47 #include "ui/gfx/geometry/vector2d_f.h" | 46 #include "ui/gfx/geometry/vector2d_f.h" |
| 48 #include "ui/gfx/native_widget_types.h" | 47 #include "ui/gfx/native_widget_types.h" |
| 49 #include "ui/gfx/range/range.h" | 48 #include "ui/gfx/range/range.h" |
| 50 #include "ui/surface/transport_dib.h" | 49 #include "ui/surface/transport_dib.h" |
| 51 | 50 |
| 52 class GURL; | 51 class GURL; |
| (...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 private: | 759 private: |
| 761 // When emulated, this returns original device scale factor. | 760 // When emulated, this returns original device scale factor. |
| 762 float GetOriginalDeviceScaleFactor() const; | 761 float GetOriginalDeviceScaleFactor() const; |
| 763 | 762 |
| 764 DISALLOW_COPY_AND_ASSIGN(RenderWidget); | 763 DISALLOW_COPY_AND_ASSIGN(RenderWidget); |
| 765 }; | 764 }; |
| 766 | 765 |
| 767 } // namespace content | 766 } // namespace content |
| 768 | 767 |
| 769 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ | 768 #endif // CONTENT_RENDERER_RENDER_WIDGET_H_ |
| OLD | NEW |