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/common/webmessageportchannel_impl.h" | 8 #include "chrome/common/webmessageportchannel_impl.h" |
9 #include "chrome/worker/worker_thread.h" | 9 #include "chrome/worker/worker_thread.h" |
10 #include "webkit/api/public/WebString.h" | 10 #include "webkit/api/public/WebString.h" |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 bool WorkerWebKitClientImpl::getFileSize(const WebKit::WebString& path, | 67 bool WorkerWebKitClientImpl::getFileSize(const WebKit::WebString& path, |
68 long long& result) { | 68 long long& result) { |
69 NOTREACHED(); | 69 NOTREACHED(); |
70 return false; | 70 return false; |
71 } | 71 } |
72 | 72 |
73 WebKit::WebString WorkerWebKitClientImpl::defaultLocale() { | 73 WebKit::WebString WorkerWebKitClientImpl::defaultLocale() { |
74 NOTREACHED(); | 74 NOTREACHED(); |
75 return WebKit::WebString(); | 75 return WebKit::WebString(); |
76 } | 76 } |
| 77 |
| 78 WebKit::WebSharedWorkerRepository* |
| 79 WorkerWebKitClientImpl::sharedWorkerRepository() { |
| 80 return 0; |
| 81 } |
OLD | NEW |