summaryrefslogtreecommitdiffstats
path: root/content/child/quota_dispatcher.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-19 06:42:14 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-02-19 06:42:14 +0000
commit3dda5851a121c2d424db0a731b7314fee3fd5a3d (patch)
treedf69fe7c90dd41846de91d01d5e3f706967c0a28 /content/child/quota_dispatcher.h
parent400aec2701f8152512dacf97e21559c24f8e6101 (diff)
downloadchromium_src-3dda5851a121c2d424db0a731b7314fee3fd5a3d.zip
chromium_src-3dda5851a121c2d424db0a731b7314fee3fd5a3d.tar.gz
chromium_src-3dda5851a121c2d424db0a731b7314fee3fd5a3d.tar.bz2
Move WorkerTaskRunner to content/child.
This moves it from webkit/child to content/child, since src/webkit is dying and it is a trivial move. WorkerTaskRunner has no dependencies besides base, and nobody in webkit/ is using it, just content. BUG=265753 TEST=content_shell and content_unittests R=jochen@chromium.org,jam@chromium.org,darin@chromium.org TBR=darin Review URL: https://codereview.chromium.org/165373004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251975 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/child/quota_dispatcher.h')
-rw-r--r--content/child/quota_dispatcher.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/child/quota_dispatcher.h b/content/child/quota_dispatcher.h
index 000777f..b80b194 100644
--- a/content/child/quota_dispatcher.h
+++ b/content/child/quota_dispatcher.h
@@ -11,7 +11,7 @@
#include "base/basictypes.h"
#include "base/id_map.h"
#include "base/memory/ref_counted.h"
-#include "webkit/child/worker_task_runner.h"
+#include "content/child/worker_task_runner.h"
#include "webkit/common/quota/quota_types.h"
class GURL;
@@ -33,7 +33,7 @@ class QuotaMessageFilter;
// process from/to the main browser process. There is one instance
// per each thread. Thread-specific instance can be obtained by
// ThreadSpecificInstance().
-class QuotaDispatcher : public webkit_glue::WorkerTaskRunner::Observer {
+class QuotaDispatcher : public WorkerTaskRunner::Observer {
public:
class Callback {
public:
@@ -53,7 +53,7 @@ class QuotaDispatcher : public webkit_glue::WorkerTaskRunner::Observer {
ThreadSafeSender* thread_safe_sender,
QuotaMessageFilter* quota_message_filter);
- // webkit_glue::WorkerTaskRunner::Observer implementation.
+ // WorkerTaskRunner::Observer implementation.
virtual void OnWorkerRunLoopStopped() OVERRIDE;
void OnMessageReceived(const IPC::Message& msg);