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 #pragma once | |
8 | 7 |
9 #if defined(OS_MACOSX) | 8 #if defined(OS_MACOSX) |
10 #include <OpenGL/OpenGL.h> | 9 #include <OpenGL/OpenGL.h> |
11 #endif | 10 #endif |
12 | 11 |
13 #if defined(TOOLKIT_GTK) | 12 #if defined(TOOLKIT_GTK) |
14 #include <gdk/gdk.h> | 13 #include <gdk/gdk.h> |
15 #endif | 14 #endif |
16 | 15 |
17 #include <string> | 16 #include <string> |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 | 102 |
104 gfx::Rect current_display_area_; | 103 gfx::Rect current_display_area_; |
105 float current_device_scale_factor_; | 104 float current_device_scale_factor_; |
106 | 105 |
107 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); | 106 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); |
108 }; | 107 }; |
109 | 108 |
110 } // namespace content | 109 } // namespace content |
111 | 110 |
112 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ | 111 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
OLD | NEW |