summaryrefslogtreecommitdiff
path: root/Source/WebCore/storage
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2012-07-23 09:28:44 +0200
committerSimon Hausmann <simon.hausmann@nokia.com>2012-07-23 09:28:44 +0200
commit815f1ed417bd26fbe2abbdf20ac5d3423b30796c (patch)
tree923c9a9e2834ccab60f5caecfb8f0ac410c1dd9e /Source/WebCore/storage
parentb4ad5d9d2b96baacd0180ead50de5195ca78af2d (diff)
downloadqtwebkit-815f1ed417bd26fbe2abbdf20ac5d3423b30796c.tar.gz
Imported WebKit commit e65cbc5b6ac32627c797e7fc7f46eb7794410c92 (http://svn.webkit.org/repository/webkit/trunk@123308)
New snapshot with better configure tests
Diffstat (limited to 'Source/WebCore/storage')
-rw-r--r--Source/WebCore/storage/StorageAreaImpl.h2
-rw-r--r--Source/WebCore/storage/StorageMap.h2
-rw-r--r--Source/WebCore/storage/StorageSyncManager.h2
-rw-r--r--Source/WebCore/storage/StorageTask.h2
-rw-r--r--Source/WebCore/storage/StorageTracker.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/Source/WebCore/storage/StorageAreaImpl.h b/Source/WebCore/storage/StorageAreaImpl.h
index be0451c85..4c90e5bc0 100644
--- a/Source/WebCore/storage/StorageAreaImpl.h
+++ b/Source/WebCore/storage/StorageAreaImpl.h
@@ -70,7 +70,7 @@ namespace WebCore {
private:
StorageAreaImpl(StorageType, PassRefPtr<SecurityOrigin>, PassRefPtr<StorageSyncManager>, unsigned quota);
- StorageAreaImpl(StorageAreaImpl*);
+ explicit StorageAreaImpl(StorageAreaImpl*);
void blockUntilImportComplete() const;
void closeDatabaseTimerFired(Timer<StorageAreaImpl>*);
diff --git a/Source/WebCore/storage/StorageMap.h b/Source/WebCore/storage/StorageMap.h
index 1fc17b077..147df6402 100644
--- a/Source/WebCore/storage/StorageMap.h
+++ b/Source/WebCore/storage/StorageMap.h
@@ -54,7 +54,7 @@ namespace WebCore {
static const unsigned noQuota = UINT_MAX;
private:
- StorageMap(unsigned quota);
+ explicit StorageMap(unsigned quota);
PassRefPtr<StorageMap> copy();
void invalidateIterator();
void setIteratorToIndex(unsigned);
diff --git a/Source/WebCore/storage/StorageSyncManager.h b/Source/WebCore/storage/StorageSyncManager.h
index e27833787..fa5c16dcc 100644
--- a/Source/WebCore/storage/StorageSyncManager.h
+++ b/Source/WebCore/storage/StorageSyncManager.h
@@ -50,7 +50,7 @@ namespace WebCore {
void close();
private:
- StorageSyncManager(const String& path);
+ explicit StorageSyncManager(const String& path);
OwnPtr<StorageThread> m_thread;
diff --git a/Source/WebCore/storage/StorageTask.h b/Source/WebCore/storage/StorageTask.h
index 7d0523fd1..b14e9fe5f 100644
--- a/Source/WebCore/storage/StorageTask.h
+++ b/Source/WebCore/storage/StorageTask.h
@@ -58,7 +58,7 @@ namespace WebCore {
StorageTask(Type, StorageThread*);
StorageTask(Type, const String& originIdentifier);
StorageTask(Type, const String& originIdentifier, const String& databaseFilename);
- StorageTask(Type);
+ explicit StorageTask(Type);
Type m_type;
StorageAreaSync* m_area;
diff --git a/Source/WebCore/storage/StorageTracker.h b/Source/WebCore/storage/StorageTracker.h
index 9ee23f5ff..ea3a38fde 100644
--- a/Source/WebCore/storage/StorageTracker.h
+++ b/Source/WebCore/storage/StorageTracker.h
@@ -78,7 +78,7 @@ public:
void setStorageDatabaseIdleInterval(double interval) { m_StorageDatabaseIdleInterval = interval; }
private:
- StorageTracker(const String& storagePath);
+ explicit StorageTracker(const String& storagePath);
static void scheduleTask(void*);
void internalInitialize();