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

Side by Side Diff: webkit/glue/webworker_impl.cc

Issue 164225: Switch to WebFrame from the WebKit API.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 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 | « webkit/glue/webview_impl.cc ('k') | webkit/tools/test_shell/layout_test_controller.cc » ('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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 "config.h" 5 #include "config.h"
6 6
7 #include "base/compiler_specific.h" 7 #include "base/compiler_specific.h"
8 8
9 #include "DedicatedWorkerContext.h" 9 #include "DedicatedWorkerContext.h"
10 #include "DedicatedWorkerThread.h" 10 #include "DedicatedWorkerThread.h"
(...skipping 18 matching lines...) Expand all
29 #include "webkit/api/src/PlatformMessagePortChannel.h" 29 #include "webkit/api/src/PlatformMessagePortChannel.h"
30 #include "webkit/glue/glue_util.h" 30 #include "webkit/glue/glue_util.h"
31 #include "webkit/glue/webdatasource_impl.h" 31 #include "webkit/glue/webdatasource_impl.h"
32 #include "webkit/glue/webframe_impl.h" 32 #include "webkit/glue/webframe_impl.h"
33 #include "webkit/glue/webpreferences.h" 33 #include "webkit/glue/webpreferences.h"
34 #include "webkit/glue/webview.h" 34 #include "webkit/glue/webview.h"
35 #include "webkit/glue/webview_delegate.h" 35 #include "webkit/glue/webview_delegate.h"
36 #include "webkit/glue/webworker_impl.h" 36 #include "webkit/glue/webworker_impl.h"
37 37
38 using WebKit::WebCursorInfo; 38 using WebKit::WebCursorInfo;
39 using WebKit::WebFrame;
39 using WebKit::WebMessagePortChannel; 40 using WebKit::WebMessagePortChannel;
40 using WebKit::WebNavigationPolicy; 41 using WebKit::WebNavigationPolicy;
41 using WebKit::WebRect; 42 using WebKit::WebRect;
42 using WebKit::WebScreenInfo; 43 using WebKit::WebScreenInfo;
43 using WebKit::WebString; 44 using WebKit::WebString;
44 using WebKit::WebURL; 45 using WebKit::WebURL;
45 using WebKit::WebWorker; 46 using WebKit::WebWorker;
46 using WebKit::WebWorkerClient; 47 using WebKit::WebWorkerClient;
47 48
48 #if ENABLE(WORKERS) 49 #if ENABLE(WORKERS)
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 385
385 namespace WebKit { 386 namespace WebKit {
386 387
387 WebWorker* WebWorker::create(WebWorkerClient* client) { 388 WebWorker* WebWorker::create(WebWorkerClient* client) {
388 return NULL; 389 return NULL;
389 } 390 }
390 391
391 } 392 }
392 393
393 #endif 394 #endif
OLDNEW
« no previous file with comments | « webkit/glue/webview_impl.cc ('k') | webkit/tools/test_shell/layout_test_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698