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

Unified Diff: webkit/browser/dom_storage/dom_storage_task_runner.h

Issue 16701004: Fix webkit_storage exports definitions (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
Index: webkit/browser/dom_storage/dom_storage_task_runner.h
diff --git a/webkit/browser/dom_storage/dom_storage_task_runner.h b/webkit/browser/dom_storage/dom_storage_task_runner.h
index c3d71d5ae53b72f010e30d8ee11118efd56b08aa..5460a514ec6be29ae4baed87c0d5d44cb5db2f16 100644
--- a/webkit/browser/dom_storage/dom_storage_task_runner.h
+++ b/webkit/browser/dom_storage/dom_storage_task_runner.h
@@ -9,7 +9,7 @@
#include "base/sequenced_task_runner.h"
#include "base/threading/sequenced_worker_pool.h"
#include "base/time.h"
-#include "webkit/storage/webkit_storage_export.h"
+#include "webkit/browser/webkit_storage_browser_export.h"
namespace base {
class MessageLoopProxy;
@@ -26,7 +26,8 @@ namespace dom_storage {
// TODO(michaeln): Skip tasks for reading during shutdown.
// * Internal tasks related to committing changes to disk are performed as
// shutdown-blocking commit sequence tasks.
-class WEBKIT_STORAGE_EXPORT DomStorageTaskRunner : public base::TaskRunner {
+class WEBKIT_STORAGE_BROWSER_EXPORT DomStorageTaskRunner
+ : public base::TaskRunner {
public:
enum SequenceID {
PRIMARY_SEQUENCE,
@@ -66,7 +67,7 @@ class WEBKIT_STORAGE_EXPORT DomStorageTaskRunner : public base::TaskRunner {
// A derived class used in chromium that utilizes a SequenceWorkerPool
// under dom_storage specific SequenceTokens. The |delayed_task_loop|
// is used to delay scheduling on the worker pool.
-class WEBKIT_STORAGE_EXPORT DomStorageWorkerPoolTaskRunner :
+class WEBKIT_STORAGE_BROWSER_EXPORT DomStorageWorkerPoolTaskRunner :
public DomStorageTaskRunner {
public:
DomStorageWorkerPoolTaskRunner(
@@ -105,7 +106,7 @@ class WEBKIT_STORAGE_EXPORT DomStorageWorkerPoolTaskRunner :
// There is no distinction between [non]-shutdown-blocking or
// the primary sequence vs the commit sequence in the mock,
// all tasks are scheduled on |message_loop| with zero delay.
-class WEBKIT_STORAGE_EXPORT MockDomStorageTaskRunner :
+class WEBKIT_STORAGE_BROWSER_EXPORT MockDomStorageTaskRunner :
public DomStorageTaskRunner {
public:
explicit MockDomStorageTaskRunner(base::MessageLoopProxy* message_loop);
« no previous file with comments | « webkit/browser/dom_storage/dom_storage_session.h ('k') | webkit/browser/dom_storage/local_storage_database_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698