[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

cfleizach at apple.com cfleizach at apple.com
Wed Dec 22 11:36:36 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit aed49298027168d00ef193e174f62d97db30989a
Author: cfleizach at apple.com <cfleizach at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jul 30 21:13:51 2010 +0000

    Style errors in Navigator.h
    https://bugs.webkit.org/show_bug.cgi?id=43262
    
    Reviewed by Darin Adler.
    
    Fixing style changes. No new tests.
    
    * page/Navigator.h:
    (WebCore::Navigator::create):
    (WebCore::Navigator::frame):
    (WebCore::Navigator::optionalGeolocation):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64371 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 1e16401..d2e05e5 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,17 @@
+2010-07-30  Chris Fleizach  <cfleizach at apple.com>
+
+        Reviewed by Darin Adler.
+
+        Style errors in Navigator.h
+        https://bugs.webkit.org/show_bug.cgi?id=43262
+
+        Fixing style changes. No new tests.
+
+        * page/Navigator.h:
+        (WebCore::Navigator::create):
+        (WebCore::Navigator::frame):
+        (WebCore::Navigator::optionalGeolocation):
+
 2010-07-27  Darin Fisher  <darin at chromium.org>
 
         Reviewed by Brady Eidson.
diff --git a/WebCore/page/Navigator.h b/WebCore/page/Navigator.h
index a565582..3a07126 100644
--- a/WebCore/page/Navigator.h
+++ b/WebCore/page/Navigator.h
@@ -27,46 +27,46 @@
 
 namespace WebCore {
 
-    class DOMMimeTypeArray;
-    class DOMPluginArray;
-    class Frame;
-    class Geolocation;
-    class PluginData;
-    class String;
-
-    class Navigator : public NavigatorBase, public RefCounted<Navigator> {
-    public:
-        static PassRefPtr<Navigator> create(Frame* frame) { return adoptRef(new Navigator(frame)); }
-        ~Navigator();
-
-        void disconnectFrame();
-        Frame* frame() const { return m_frame; }
-
-        String appVersion() const;
-        String language() const;
-        DOMPluginArray* plugins() const;
-        DOMMimeTypeArray* mimeTypes() const;
-        bool cookieEnabled() const;
-        bool javaEnabled() const;
-
-        virtual String userAgent() const;
-
-        Geolocation* geolocation() const;
-        // This is used for GC marking.
-        Geolocation* optionalGeolocation() const { return m_geolocation.get(); }
+class DOMMimeTypeArray;
+class DOMPluginArray;
+class Frame;
+class Geolocation;
+class PluginData;
+class String;
+
+class Navigator : public NavigatorBase, public RefCounted<Navigator> {
+public:
+    static PassRefPtr<Navigator> create(Frame* frame) { return adoptRef(new Navigator(frame)); }
+    virtual ~Navigator();
+
+    void disconnectFrame();
+    Frame* frame() const { return m_frame; }
+
+    String appVersion() const;
+    String language() const;
+    DOMPluginArray* plugins() const;
+    DOMMimeTypeArray* mimeTypes() const;
+    bool cookieEnabled() const;
+    bool javaEnabled() const;
+
+    virtual String userAgent() const;
+
+    Geolocation* geolocation() const;
+    // This is used for GC marking.
+    Geolocation* optionalGeolocation() const { return m_geolocation.get(); }
 
 #if ENABLE(DOM_STORAGE)
-        // Relinquishes the storage lock, if one exists.
-        void getStorageUpdates();
+    // Relinquishes the storage lock, if one exists.
+    void getStorageUpdates();
 #endif
 
-    private:
-        Navigator(Frame*);
-        Frame* m_frame;
-        mutable RefPtr<DOMPluginArray> m_plugins;
-        mutable RefPtr<DOMMimeTypeArray> m_mimeTypes;
-        mutable RefPtr<Geolocation> m_geolocation;
-    };
+private:
+    Navigator(Frame*);
+    Frame* m_frame;
+    mutable RefPtr<DOMPluginArray> m_plugins;
+    mutable RefPtr<DOMMimeTypeArray> m_mimeTypes;
+    mutable RefPtr<Geolocation> m_geolocation;
+};
 
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list