Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(571)

Side by Side Diff: chrome/worker/worker_webkitclient_impl.cc

Issue 1601005: Allow synchronous messages to be sent from threads other than the main thread... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/renderer/renderer_webkitclient_impl.cc ('k') | ipc/ipc.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/db_message_filter.h"
10 #include "chrome/common/render_messages.h" 9 #include "chrome/common/render_messages.h"
11 #include "chrome/common/webmessageportchannel_impl.h" 10 #include "chrome/common/webmessageportchannel_impl.h"
12 #include "chrome/worker/worker_thread.h" 11 #include "chrome/worker/worker_thread.h"
13 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" 12 #include "third_party/WebKit/WebKit/chromium/public/WebString.h"
14 #include "third_party/WebKit/WebKit/chromium/public/WebURL.h" 13 #include "third_party/WebKit/WebKit/chromium/public/WebURL.h"
15 14
16 using WebKit::WebClipboard; 15 using WebKit::WebClipboard;
17 using WebKit::WebKitClient; 16 using WebKit::WebKitClient;
18 using WebKit::WebMessagePortChannel; 17 using WebKit::WebMessagePortChannel;
19 using WebKit::WebMimeRegistry; 18 using WebKit::WebMimeRegistry;
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 WebString WorkerWebKitClientImpl::mimeTypeFromFile(const WebString&) { 162 WebString WorkerWebKitClientImpl::mimeTypeFromFile(const WebString&) {
164 NOTREACHED(); 163 NOTREACHED();
165 return WebString(); 164 return WebString();
166 } 165 }
167 166
168 WebString WorkerWebKitClientImpl::preferredExtensionForMIMEType( 167 WebString WorkerWebKitClientImpl::preferredExtensionForMIMEType(
169 const WebString&) { 168 const WebString&) {
170 NOTREACHED(); 169 NOTREACHED();
171 return WebString(); 170 return WebString();
172 } 171 }
OLDNEW
« no previous file with comments | « chrome/renderer/renderer_webkitclient_impl.cc ('k') | ipc/ipc.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698