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" |
6 | 6 |
7 #include "base/at_exit.h" | 7 #include "base/at_exit.h" |
8 #include "base/gfx/native_widget_types.h" | 8 #include "base/gfx/native_widget_types.h" |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 const WebKit::WebURL& url, | 69 const WebKit::WebURL& url, |
70 const WebKit::WebURL& first_party_for_cookies) { | 70 const WebKit::WebURL& first_party_for_cookies) { |
71 NOTREACHED(); | 71 NOTREACHED(); |
72 return WebKit::WebString(); | 72 return WebKit::WebString(); |
73 } | 73 } |
74 | 74 |
75 virtual void prefetchHostName(const WebKit::WebString&) { | 75 virtual void prefetchHostName(const WebKit::WebString&) { |
76 NOTREACHED(); | 76 NOTREACHED(); |
77 } | 77 } |
78 | 78 |
| 79 virtual bool getFileSize(const WebKit::WebString& path, long long& result) { |
| 80 NOTREACHED(); |
| 81 return false; |
| 82 } |
| 83 |
79 virtual WebKit::WebString defaultLocale() { | 84 virtual WebKit::WebString defaultLocale() { |
80 NOTREACHED(); | 85 NOTREACHED(); |
81 return WebKit::WebString(); | 86 return WebKit::WebString(); |
82 } | 87 } |
83 | 88 |
84 virtual void callOnMainThread(void (*func)()) { | 89 virtual void callOnMainThread(void (*func)()) { |
85 helper_->DispatchToMainThread(func); | 90 helper_->DispatchToMainThread(func); |
86 } | 91 } |
87 | 92 |
88 private: | 93 private: |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 bool DownloadUrl(const std::string& url, HWND caller_window) { | 223 bool DownloadUrl(const std::string& url, HWND caller_window) { |
219 return false; | 224 return false; |
220 } | 225 } |
221 #endif | 226 #endif |
222 | 227 |
223 } // namespace webkit_glue | 228 } // namespace webkit_glue |
224 | 229 |
225 #if defined(COMPILER_GCC) | 230 #if defined(COMPILER_GCC) |
226 #pragma GCC visibility pop | 231 #pragma GCC visibility pop |
227 #endif | 232 #endif |
OLD | NEW |