| 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/browser/in_process_webkit/browser_webkitclient_impl.h" | 5 #include "chrome/browser/in_process_webkit/browser_webkitclient_impl.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "chrome/browser/in_process_webkit/dom_storage_dispatcher_host.h" | 8 #include "chrome/browser/in_process_webkit/dom_storage_dispatcher_host.h" |
| 9 #include "webkit/api/public/WebData.h" | 9 #include "webkit/api/public/WebData.h" |
| 10 #include "webkit/api/public/WebString.h" | 10 #include "webkit/api/public/WebString.h" |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 WebKit::WebThemeEngine* BrowserWebKitClientImpl::themeEngine() { | 71 WebKit::WebThemeEngine* BrowserWebKitClientImpl::themeEngine() { |
| 72 NOTREACHED(); | 72 NOTREACHED(); |
| 73 return NULL; | 73 return NULL; |
| 74 } | 74 } |
| 75 | 75 |
| 76 WebKit::WebURLLoader* BrowserWebKitClientImpl::createURLLoader() { | 76 WebKit::WebURLLoader* BrowserWebKitClientImpl::createURLLoader() { |
| 77 NOTREACHED(); | 77 NOTREACHED(); |
| 78 return NULL; | 78 return NULL; |
| 79 } | 79 } |
| 80 | 80 |
| 81 WebKit::WebSocketStreamHandle* BrowserWebKitClientImpl::createSocketStreamHandle
() { |
| 82 NOTREACHED(); |
| 83 return NULL; |
| 84 } |
| 85 |
| 81 void BrowserWebKitClientImpl::getPluginList(bool refresh, | 86 void BrowserWebKitClientImpl::getPluginList(bool refresh, |
| 82 WebKit::WebPluginListBuilder* builder) { | 87 WebKit::WebPluginListBuilder* builder) { |
| 83 NOTREACHED(); | 88 NOTREACHED(); |
| 84 } | 89 } |
| 85 | 90 |
| 86 WebKit::WebData BrowserWebKitClientImpl::loadResource(const char* name) { | 91 WebKit::WebData BrowserWebKitClientImpl::loadResource(const char* name) { |
| 87 NOTREACHED(); | 92 NOTREACHED(); |
| 88 return WebKit::WebData(); | 93 return WebKit::WebData(); |
| 89 } | 94 } |
| 90 | 95 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 111 const WebKit::WebString& key, const WebKit::WebString& old_value, | 116 const WebKit::WebString& key, const WebKit::WebString& old_value, |
| 112 const WebKit::WebString& new_value, const WebKit::WebString& origin, | 117 const WebKit::WebString& new_value, const WebKit::WebString& origin, |
| 113 bool is_local_storage) { | 118 bool is_local_storage) { |
| 114 // TODO(jorlow): Implement | 119 // TODO(jorlow): Implement |
| 115 if (!is_local_storage) | 120 if (!is_local_storage) |
| 116 return; | 121 return; |
| 117 | 122 |
| 118 DOMStorageDispatcherHost::DispatchStorageEvent(key, old_value, new_value, | 123 DOMStorageDispatcherHost::DispatchStorageEvent(key, old_value, new_value, |
| 119 origin, is_local_storage); | 124 origin, is_local_storage); |
| 120 } | 125 } |
| OLD | NEW |