OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the 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/database_util.h" | 8 #include "chrome/common/database_util.h" |
9 #include "chrome/common/render_messages.h" | 9 #include "chrome/common/render_messages.h" |
| 10 #include "chrome/common/render_messages_params.h" |
10 #include "chrome/common/webmessageportchannel_impl.h" | 11 #include "chrome/common/webmessageportchannel_impl.h" |
11 #include "chrome/worker/worker_thread.h" | 12 #include "chrome/worker/worker_thread.h" |
12 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" | 13 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" |
13 #include "third_party/WebKit/WebKit/chromium/public/WebURL.h" | 14 #include "third_party/WebKit/WebKit/chromium/public/WebURL.h" |
14 | 15 |
15 using WebKit::WebClipboard; | 16 using WebKit::WebClipboard; |
16 using WebKit::WebKitClient; | 17 using WebKit::WebKitClient; |
17 using WebKit::WebMessagePortChannel; | 18 using WebKit::WebMessagePortChannel; |
18 using WebKit::WebMimeRegistry; | 19 using WebKit::WebMimeRegistry; |
19 using WebKit::WebSandboxSupport; | 20 using WebKit::WebSandboxSupport; |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 WebString WorkerWebKitClientImpl::mimeTypeFromFile(const WebString&) { | 165 WebString WorkerWebKitClientImpl::mimeTypeFromFile(const WebString&) { |
165 NOTREACHED(); | 166 NOTREACHED(); |
166 return WebString(); | 167 return WebString(); |
167 } | 168 } |
168 | 169 |
169 WebString WorkerWebKitClientImpl::preferredExtensionForMIMEType( | 170 WebString WorkerWebKitClientImpl::preferredExtensionForMIMEType( |
170 const WebString&) { | 171 const WebString&) { |
171 NOTREACHED(); | 172 NOTREACHED(); |
172 return WebString(); | 173 return WebString(); |
173 } | 174 } |
OLD | NEW |