OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 WEBKIT_GLUE_WEBVIEW_IMPL_H__ | 5 #ifndef WEBKIT_GLUE_WEBVIEW_IMPL_H__ |
6 #define WEBKIT_GLUE_WEBVIEW_IMPL_H__ | 6 #define WEBKIT_GLUE_WEBVIEW_IMPL_H__ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/gfx/platform_canvas.h" | |
13 #include "base/gfx/point.h" | 12 #include "base/gfx/point.h" |
14 #include "base/gfx/size.h" | 13 #include "base/gfx/size.h" |
| 14 #include "skia/ext/platform_canvas.h" |
15 #include "webkit/glue/webdropdata.h" | 15 #include "webkit/glue/webdropdata.h" |
16 #include "webkit/glue/webframe_impl.h" | 16 #include "webkit/glue/webframe_impl.h" |
17 #include "webkit/glue/webpreferences.h" | 17 #include "webkit/glue/webpreferences.h" |
18 #include "webkit/glue/webview.h" | 18 #include "webkit/glue/webview.h" |
19 | 19 |
20 MSVC_PUSH_WARNING_LEVEL(0); | 20 MSVC_PUSH_WARNING_LEVEL(0); |
21 #include "BackForwardList.h" | 21 #include "BackForwardList.h" |
22 #include "Page.h" | 22 #include "Page.h" |
23 MSVC_POP_WARNING(); | 23 MSVC_POP_WARNING(); |
24 | 24 |
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 return g_current_input_event; | 314 return g_current_input_event; |
315 } | 315 } |
316 private: | 316 private: |
317 static const WebInputEvent* g_current_input_event; | 317 static const WebInputEvent* g_current_input_event; |
318 | 318 |
319 DISALLOW_EVIL_CONSTRUCTORS(WebViewImpl); | 319 DISALLOW_EVIL_CONSTRUCTORS(WebViewImpl); |
320 }; | 320 }; |
321 | 321 |
322 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H__ | 322 #endif // WEBKIT_GLUE_WEBVIEW_IMPL_H__ |
323 | 323 |
OLD | NEW |