OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this |
2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
3 // LICENSE file. | 3 // LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_CLIENT_IMPL_H_ | 5 #ifndef WEBKIT_CLIENT_IMPL_H_ |
6 #define WEBKIT_CLIENT_IMPL_H_ | 6 #define WEBKIT_CLIENT_IMPL_H_ |
7 | 7 |
8 #include "base/platform_file.h" | 8 #include "base/platform_file.h" |
9 #include "base/timer.h" | 9 #include "base/timer.h" |
10 #include "webkit/api/public/WebKitClient.h" | 10 #include "third_party/WebKit/WebKit/chromium/public/WebKitClient.h" |
11 #if defined(OS_WIN) | 11 #if defined(OS_WIN) |
12 #include "webkit/glue/webthemeengine_impl_win.h" | 12 #include "webkit/glue/webthemeengine_impl_win.h" |
13 #endif | 13 #endif |
14 | 14 |
15 class MessageLoop; | 15 class MessageLoop; |
16 | 16 |
17 namespace webkit_glue { | 17 namespace webkit_glue { |
18 | 18 |
19 class WebKitClientImpl : public WebKit::WebKitClient { | 19 class WebKitClientImpl : public WebKit::WebKitClient { |
20 public: | 20 public: |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 void (*shared_timer_func_)(); | 84 void (*shared_timer_func_)(); |
85 | 85 |
86 #if defined(OS_WIN) | 86 #if defined(OS_WIN) |
87 WebThemeEngineImpl theme_engine_; | 87 WebThemeEngineImpl theme_engine_; |
88 #endif | 88 #endif |
89 }; | 89 }; |
90 | 90 |
91 } // namespace webkit_glue | 91 } // namespace webkit_glue |
92 | 92 |
93 #endif // WEBKIT_CLIENT_IMPL_H_ | 93 #endif // WEBKIT_CLIENT_IMPL_H_ |
OLD | NEW |