OLD | NEW |
---|---|
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "config.h" | 5 #include "config.h" |
darin (slow to review)
2009/08/12 21:47:21
can we remove config.h instead?
| |
6 | 6 |
7 #undef LOG | |
8 | |
7 #include "base/at_exit.h" | 9 #include "base/at_exit.h" |
8 #include "base/gfx/native_widget_types.h" | 10 #include "base/gfx/native_widget_types.h" |
9 #include "base/logging.h" | 11 #include "base/logging.h" |
10 #include "base/path_service.h" | 12 #include "base/path_service.h" |
11 #include "base/scoped_ptr.h" | 13 #include "base/scoped_ptr.h" |
12 #include "base/string_util.h" | 14 #include "base/string_util.h" |
13 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
14 #include "webkit/api/public/WebKit.h" | 16 #include "webkit/api/public/WebKit.h" |
15 #include "webkit/api/public/WebString.h" | 17 #include "webkit/api/public/WebString.h" |
16 #include "webkit/glue/resource_loader_bridge.h" | 18 #include "webkit/glue/resource_loader_bridge.h" |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
242 bool DownloadUrl(const std::string& url, HWND caller_window) { | 244 bool DownloadUrl(const std::string& url, HWND caller_window) { |
243 return false; | 245 return false; |
244 } | 246 } |
245 #endif | 247 #endif |
246 | 248 |
247 } // namespace webkit_glue | 249 } // namespace webkit_glue |
248 | 250 |
249 #if defined(COMPILER_GCC) | 251 #if defined(COMPILER_GCC) |
250 #pragma GCC visibility pop | 252 #pragma GCC visibility pop |
251 #endif | 253 #endif |
OLD | NEW |