Title: [149299] trunk/Source/WebCore
Revision
149299
Author
[email protected]
Date
2013-04-29 11:19:16 -0700 (Mon, 29 Apr 2013)

Log Message

Re-indent StorageSyncManager and remove SecurityOrigin forward declaration.

Rubber-stamped by Andreas Kling.

* storage/StorageSyncManager.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (149298 => 149299)


--- trunk/Source/WebCore/ChangeLog	2013-04-29 18:08:57 UTC (rev 149298)
+++ trunk/Source/WebCore/ChangeLog	2013-04-29 18:19:16 UTC (rev 149299)
@@ -1,3 +1,11 @@
+2013-04-29  Anders Carlsson  <[email protected]>
+
+        Re-indent StorageSyncManager and remove SecurityOrigin forward declaration.
+
+        Rubber-stamped by Andreas Kling.
+
+        * storage/StorageSyncManager.h:
+
 2013-04-27  Anders Carlsson  <[email protected]>
 
         Get rid of StorageTask

Modified: trunk/Source/WebCore/storage/StorageSyncManager.h (149298 => 149299)


--- trunk/Source/WebCore/storage/StorageSyncManager.h	2013-04-29 18:08:57 UTC (rev 149298)
+++ trunk/Source/WebCore/storage/StorageSyncManager.h	2013-04-29 18:19:16 UTC (rev 149299)
@@ -33,34 +33,33 @@
 
 namespace WebCore {
 
-    class StorageThread;
-    class SecurityOrigin;
-    class StorageAreaSync;
+class StorageThread;
+class StorageAreaSync;
 
-    class StorageSyncManager : public RefCounted<StorageSyncManager> {
-    public:
-        static PassRefPtr<StorageSyncManager> create(const String& path);
-        ~StorageSyncManager();
+class StorageSyncManager : public RefCounted<StorageSyncManager> {
+public:
+    static PassRefPtr<StorageSyncManager> create(const String& path);
+    ~StorageSyncManager();
 
-        bool scheduleImport(PassRefPtr<StorageAreaSync>);
-        void scheduleSync(PassRefPtr<StorageAreaSync>);
-        void scheduleDeleteEmptyDatabase(PassRefPtr<StorageAreaSync>);
+    bool scheduleImport(PassRefPtr<StorageAreaSync>);
+    void scheduleSync(PassRefPtr<StorageAreaSync>);
+    void scheduleDeleteEmptyDatabase(PassRefPtr<StorageAreaSync>);
 
-        void close();
+    void close();
 
-    private:
-        explicit StorageSyncManager(const String& path);
+private:
+    explicit StorageSyncManager(const String& path);
 
-        OwnPtr<StorageThread> m_thread;
+    OwnPtr<StorageThread> m_thread;
 
-    // The following members are subject to thread synchronization issues
-    public:
-        // To be called from the background thread:
-        String fullDatabaseFilename(const String& databaseIdentifier);
+// The following members are subject to thread synchronization issues
+public:
+    // To be called from the background thread:
+    String fullDatabaseFilename(const String& databaseIdentifier);
 
-    private:
-        String m_path;
-    };
+private:
+    String m_path;
+};
 
 } // namespace WebCore
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to