| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |