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

Unified Diff: webkit/child/worker_task_runner.h

Issue 16834004: move webkit/glue/worker_task_* to webkit/child/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/child/webkitplatformsupport_child_impl.cc ('k') | webkit/child/worker_task_runner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/child/worker_task_runner.h
diff --git a/webkit/glue/worker_task_runner.h b/webkit/child/worker_task_runner.h
similarity index 82%
rename from webkit/glue/worker_task_runner.h
rename to webkit/child/worker_task_runner.h
index 8e84b88fda9a4ab50db4cc3e95326b48851aab78..e64d318603056f18cddd7999bd329496aeae44d2 100644
--- a/webkit/glue/worker_task_runner.h
+++ b/webkit/child/worker_task_runner.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WEBKIT_GLUE_WORKER_TASK_RUNNER_H_
-#define WEBKIT_GLUE_WORKER_TASK_RUNNER_H_
+#ifndef WEBKIT_CHILD_WORKER_TASK_RUNNER_H_
+#define WEBKIT_CHILD_WORKER_TASK_RUNNER_H_
#include <map>
@@ -12,11 +12,11 @@
#include "base/synchronization/lock.h"
#include "base/threading/thread_local.h"
#include "third_party/WebKit/public/platform/WebWorkerRunLoop.h"
-#include "webkit/glue/webkit_glue_export.h"
+#include "webkit/child/webkit_child_export.h"
namespace webkit_glue {
-class WEBKIT_GLUE_EXPORT WorkerTaskRunner {
+class WEBKIT_CHILD_EXPORT WorkerTaskRunner {
public:
WorkerTaskRunner();
@@ -24,7 +24,7 @@ class WEBKIT_GLUE_EXPORT WorkerTaskRunner {
int CurrentWorkerId();
static WorkerTaskRunner* Instance();
- class WEBKIT_GLUE_EXPORT Observer {
+ class WEBKIT_CHILD_EXPORT Observer {
public:
virtual ~Observer() {}
virtual void OnWorkerRunLoopStopped() = 0;
@@ -36,7 +36,7 @@ class WEBKIT_GLUE_EXPORT WorkerTaskRunner {
void RemoveStopObserver(Observer* observer);
private:
- friend class WebKitPlatformSupportImpl;
+ friend class WebKitPlatformSupportChildImpl;
friend class WorkerTaskRunnerTest;
typedef std::map<int, WebKit::WebWorkerRunLoop> IDToLoopMap;
@@ -55,4 +55,4 @@ class WEBKIT_GLUE_EXPORT WorkerTaskRunner {
} // namespace webkit_glue
-#endif // WEBKIT_GLUE_WORKER_TASK_RUNNER_H_
+#endif // WEBKIT_CHILD_WORKER_TASK_RUNNER_H_
« no previous file with comments | « webkit/child/webkitplatformsupport_child_impl.cc ('k') | webkit/child/worker_task_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698