| 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 "third_party/WebKit/WebKit/chromium/public/WebString.h" | 10 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 NOTREACHED(); | 82 NOTREACHED(); |
| 83 return WebString(); | 83 return WebString(); |
| 84 } | 84 } |
| 85 | 85 |
| 86 WebStorageNamespace* WorkerWebKitClientImpl::createLocalStorageNamespace( | 86 WebStorageNamespace* WorkerWebKitClientImpl::createLocalStorageNamespace( |
| 87 const WebString& path, unsigned quota) { | 87 const WebString& path, unsigned quota) { |
| 88 NOTREACHED(); | 88 NOTREACHED(); |
| 89 return 0; | 89 return 0; |
| 90 } | 90 } |
| 91 | 91 |
| 92 WebStorageNamespace* WorkerWebKitClientImpl::createSessionStorageNamespace() { | |
| 93 NOTREACHED(); | |
| 94 return 0; | |
| 95 } | |
| 96 | |
| 97 void WorkerWebKitClientImpl::dispatchStorageEvent( | 92 void WorkerWebKitClientImpl::dispatchStorageEvent( |
| 98 const WebString& key, const WebString& old_value, | 93 const WebString& key, const WebString& old_value, |
| 99 const WebString& new_value, const WebString& origin, | 94 const WebString& new_value, const WebString& origin, |
| 100 const WebKit::WebURL& url, bool is_local_storage) { | 95 const WebKit::WebURL& url, bool is_local_storage) { |
| 101 NOTREACHED(); | 96 NOTREACHED(); |
| 102 } | 97 } |
| 103 | 98 |
| 104 WebSharedWorkerRepository* WorkerWebKitClientImpl::sharedWorkerRepository() { | 99 WebSharedWorkerRepository* WorkerWebKitClientImpl::sharedWorkerRepository() { |
| 105 return 0; | 100 return 0; |
| 106 } | 101 } |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 WebString WorkerWebKitClientImpl::mimeTypeFromFile(const WebString&) { | 137 WebString WorkerWebKitClientImpl::mimeTypeFromFile(const WebString&) { |
| 143 NOTREACHED(); | 138 NOTREACHED(); |
| 144 return WebString(); | 139 return WebString(); |
| 145 } | 140 } |
| 146 | 141 |
| 147 WebString WorkerWebKitClientImpl::preferredExtensionForMIMEType( | 142 WebString WorkerWebKitClientImpl::preferredExtensionForMIMEType( |
| 148 const WebString&) { | 143 const WebString&) { |
| 149 NOTREACHED(); | 144 NOTREACHED(); |
| 150 return WebString(); | 145 return WebString(); |
| 151 } | 146 } |
| OLD | NEW |