| 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" |
| 11 #include "webkit/api/public/WebURL.h" | 11 #include "webkit/api/public/WebURL.h" |
| 12 | 12 |
| 13 using WebKit::WebStorageNamespace; |
| 14 using WebKit::WebString; |
| 15 |
| 13 WebKit::WebClipboard* WorkerWebKitClientImpl::clipboard() { | 16 WebKit::WebClipboard* WorkerWebKitClientImpl::clipboard() { |
| 14 NOTREACHED(); | 17 NOTREACHED(); |
| 15 return NULL; | 18 return NULL; |
| 16 } | 19 } |
| 17 | 20 |
| 18 WebKit::WebMimeRegistry* WorkerWebKitClientImpl::mimeRegistry() { | 21 WebKit::WebMimeRegistry* WorkerWebKitClientImpl::mimeRegistry() { |
| 19 NOTREACHED(); | 22 NOTREACHED(); |
| 20 return NULL; | 23 return NULL; |
| 21 } | 24 } |
| 22 | 25 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 long long& result) { | 71 long long& result) { |
| 69 NOTREACHED(); | 72 NOTREACHED(); |
| 70 return false; | 73 return false; |
| 71 } | 74 } |
| 72 | 75 |
| 73 WebKit::WebString WorkerWebKitClientImpl::defaultLocale() { | 76 WebKit::WebString WorkerWebKitClientImpl::defaultLocale() { |
| 74 NOTREACHED(); | 77 NOTREACHED(); |
| 75 return WebKit::WebString(); | 78 return WebKit::WebString(); |
| 76 } | 79 } |
| 77 | 80 |
| 81 WebStorageNamespace* WorkerWebKitClientImpl::createLocalStorageNamespace( |
| 82 const WebString& path, unsigned quota) { |
| 83 NOTREACHED(); |
| 84 return 0; |
| 85 } |
| 86 |
| 87 WebStorageNamespace* WorkerWebKitClientImpl::createSessionStorageNamespace() { |
| 88 NOTREACHED(); |
| 89 return 0; |
| 90 } |
| 91 |
| 92 void WorkerWebKitClientImpl::dispatchStorageEvent( |
| 93 const WebString& key, const WebString& old_value, |
| 94 const WebString& new_value, const WebString& origin, |
| 95 bool is_local_storage) { |
| 96 NOTREACHED(); |
| 97 } |
| 98 |
| 78 WebKit::WebSharedWorkerRepository* | 99 WebKit::WebSharedWorkerRepository* |
| 79 WorkerWebKitClientImpl::sharedWorkerRepository() { | 100 WorkerWebKitClientImpl::sharedWorkerRepository() { |
| 80 return 0; | 101 return 0; |
| 81 } | 102 } |
| OLD | NEW |