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 #include "chrome/worker/worker_webkitclient_impl.h" | 5 #include "chrome/worker/worker_webkitclient_impl.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "chrome/worker/worker_thread.h" | 8 #include "chrome/worker/worker_thread.h" |
9 #include "webkit/api/public/WebString.h" | 9 #include "webkit/api/public/WebString.h" |
10 #include "webkit/api/public/WebURL.h" | 10 #include "webkit/api/public/WebURL.h" |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 WebKit::WebString WorkerWebKitClientImpl::cookies( | 45 WebKit::WebString WorkerWebKitClientImpl::cookies( |
46 const WebKit::WebURL& url, const WebKit::WebURL& policy_url) { | 46 const WebKit::WebURL& url, const WebKit::WebURL& policy_url) { |
47 NOTREACHED(); | 47 NOTREACHED(); |
48 return WebKit::WebString(); | 48 return WebKit::WebString(); |
49 } | 49 } |
50 | 50 |
51 void WorkerWebKitClientImpl::prefetchHostName(const WebKit::WebString&) { | 51 void WorkerWebKitClientImpl::prefetchHostName(const WebKit::WebString&) { |
52 NOTREACHED(); | 52 NOTREACHED(); |
53 } | 53 } |
54 | 54 |
| 55 bool WorkerWebKitClientImpl::getFileSize(const WebKit::WebString& path, |
| 56 long long& result) { |
| 57 NOTREACHED(); |
| 58 return false; |
| 59 } |
| 60 |
55 WebKit::WebString WorkerWebKitClientImpl::defaultLocale() { | 61 WebKit::WebString WorkerWebKitClientImpl::defaultLocale() { |
56 NOTREACHED(); | 62 NOTREACHED(); |
57 return WebKit::WebString(); | 63 return WebKit::WebString(); |
58 } | 64 } |
OLD | NEW |