Title: [149818] trunk/Source/WebKit/blackberry
Revision
149818
Author
mifen...@rim.com
Date
2013-05-09 09:16:32 -0700 (Thu, 09 May 2013)

Log Message

[BlackBerry] Style updates required based on new check-webkit-style
https://bugs.webkit.org/show_bug.cgi?id=115857

Reviewed by Rob Buis.

Update ChromeClientBlackBerry, CredentialManager, FrameLoaderClientBlackBerry,
GeolocationClientBlackBerry and IconDatabaseClientBlackberry to
match check-webkit-style updates.

* WebCoreSupport/ChromeClientBlackBerry.h:
(ChromeClientBlackBerry):
* WebCoreSupport/CredentialManager.h:
(CredentialManager):
* WebCoreSupport/CredentialTransformData.cpp:
* WebCoreSupport/FrameLoaderClientBlackBerry.h:
(WebCore::FrameLoaderClientBlackBerry::assignIdentifierToInitialRequest):
(FrameLoaderClientBlackBerry):
(WebCore::FrameLoaderClientBlackBerry::dispatchDidReceiveAuthenticationChallenge):
(WebCore::FrameLoaderClientBlackBerry::dispatchDidCancelAuthenticationChallenge):
(WebCore::FrameLoaderClientBlackBerry::dispatchDidReceiveContentLength):
(WebCore::FrameLoaderClientBlackBerry::dispatchDidFinishLoading):
(WebCore::FrameLoaderClientBlackBerry::dispatchDidFailLoading):
* WebCoreSupport/GeolocationClientBlackBerry.cpp:
(GeolocationClientBlackBerry::onLocationUpdate):
* WebCoreSupport/GeolocationClientBlackBerry.h:
(GeolocationClientBlackBerry):
* WebCoreSupport/IconDatabaseClientBlackBerry.cpp:
(WebCore::IconDatabaseClientBlackBerry::initIconDatabase):

Modified Paths

Diff

Modified: trunk/Source/WebKit/blackberry/ChangeLog (149817 => 149818)


--- trunk/Source/WebKit/blackberry/ChangeLog	2013-05-09 16:13:05 UTC (rev 149817)
+++ trunk/Source/WebKit/blackberry/ChangeLog	2013-05-09 16:16:32 UTC (rev 149818)
@@ -1,3 +1,34 @@
+2013-05-09  Mike Fenton  <mifen...@rim.com>
+
+        [BlackBerry] Style updates required based on new check-webkit-style
+        https://bugs.webkit.org/show_bug.cgi?id=115857
+
+        Reviewed by Rob Buis.
+
+        Update ChromeClientBlackBerry, CredentialManager, FrameLoaderClientBlackBerry,
+        GeolocationClientBlackBerry and IconDatabaseClientBlackberry to
+        match check-webkit-style updates.
+
+        * WebCoreSupport/ChromeClientBlackBerry.h:
+        (ChromeClientBlackBerry):
+        * WebCoreSupport/CredentialManager.h:
+        (CredentialManager):
+        * WebCoreSupport/CredentialTransformData.cpp:
+        * WebCoreSupport/FrameLoaderClientBlackBerry.h:
+        (WebCore::FrameLoaderClientBlackBerry::assignIdentifierToInitialRequest):
+        (FrameLoaderClientBlackBerry):
+        (WebCore::FrameLoaderClientBlackBerry::dispatchDidReceiveAuthenticationChallenge):
+        (WebCore::FrameLoaderClientBlackBerry::dispatchDidCancelAuthenticationChallenge):
+        (WebCore::FrameLoaderClientBlackBerry::dispatchDidReceiveContentLength):
+        (WebCore::FrameLoaderClientBlackBerry::dispatchDidFinishLoading):
+        (WebCore::FrameLoaderClientBlackBerry::dispatchDidFailLoading):
+        * WebCoreSupport/GeolocationClientBlackBerry.cpp:
+        (GeolocationClientBlackBerry::onLocationUpdate):
+        * WebCoreSupport/GeolocationClientBlackBerry.h:
+        (GeolocationClientBlackBerry):
+        * WebCoreSupport/IconDatabaseClientBlackBerry.cpp:
+        (WebCore::IconDatabaseClientBlackBerry::initIconDatabase):
+
 2013-05-09  Jacky Jiang  <zhaji...@blackberry.com>
 
         Fix some compiler warnings (miscellaneous)

Modified: trunk/Source/WebKit/blackberry/WebCoreSupport/ChromeClientBlackBerry.h (149817 => 149818)


--- trunk/Source/WebKit/blackberry/WebCoreSupport/ChromeClientBlackBerry.h	2013-05-09 16:13:05 UTC (rev 149817)
+++ trunk/Source/WebKit/blackberry/WebCoreSupport/ChromeClientBlackBerry.h	2013-05-09 16:16:32 UTC (rev 149818)
@@ -81,7 +81,7 @@
     virtual IntRect rootViewToScreen(const IntRect&) const;
     virtual void contentsSizeChanged(Frame*, const IntSize&) const;
     virtual void scrollRectIntoView(const IntRect&, const ScrollView*) const;
-    virtual void mouseDidMoveOverElement(const HitTestResult&, unsigned int);
+    virtual void mouseDidMoveOverElement(const HitTestResult&, unsigned);
     virtual void setToolTip(const String&, TextDirection);
 #if ENABLE(EVENT_MODE_METATAGS)
     virtual void didReceiveCursorEventMode(Frame*, CursorEventMode) const;

Modified: trunk/Source/WebKit/blackberry/WebCoreSupport/CredentialManager.h (149817 => 149818)


--- trunk/Source/WebKit/blackberry/WebCoreSupport/CredentialManager.h	2013-05-09 16:13:05 UTC (rev 149817)
+++ trunk/Source/WebKit/blackberry/WebCoreSupport/CredentialManager.h	2013-05-09 16:16:32 UTC (rev 149818)
@@ -45,7 +45,7 @@
     void clearCredentials();
     void clearNeverRememberSites();
 
- private:
+private:
     friend CredentialManager& credentialManager();
     CredentialManager() { }
 };

Modified: trunk/Source/WebKit/blackberry/WebCoreSupport/CredentialTransformData.cpp (149817 => 149818)


--- trunk/Source/WebKit/blackberry/WebCoreSupport/CredentialTransformData.cpp	2013-05-09 16:13:05 UTC (rev 149817)
+++ trunk/Source/WebKit/blackberry/WebCoreSupport/CredentialTransformData.cpp	2013-05-09 16:16:32 UTC (rev 149818)
@@ -93,8 +93,7 @@
         } else if (passwords[1]->value() == passwords[2]->value()) {
             *oldPassword = passwords[0];
             *password = passwords[1];
-        }
-        else {
+        } else {
             // Three different passwords, or first and last match with middle
             // different. No idea which is which, so no luck.
             return false;

Modified: trunk/Source/WebKit/blackberry/WebCoreSupport/FrameLoaderClientBlackBerry.h (149817 => 149818)


--- trunk/Source/WebKit/blackberry/WebCoreSupport/FrameLoaderClientBlackBerry.h	2013-05-09 16:13:05 UTC (rev 149817)
+++ trunk/Source/WebKit/blackberry/WebCoreSupport/FrameLoaderClientBlackBerry.h	2013-05-09 16:16:32 UTC (rev 149818)
@@ -55,15 +55,15 @@
     virtual void setCopiesOnScroll() { notImplemented(); }
     virtual void detachedFromParent2();
     virtual void detachedFromParent3() { notImplemented(); }
-    virtual void assignIdentifierToInitialRequest(long unsigned int, DocumentLoader*, const ResourceRequest&) { notImplemented(); }
-    virtual void dispatchWillSendRequest(DocumentLoader*, long unsigned int, ResourceRequest&, const ResourceResponse&);
+    virtual void assignIdentifierToInitialRequest(long unsigned, DocumentLoader*, const ResourceRequest&) { notImplemented(); }
+    virtual void dispatchWillSendRequest(DocumentLoader*, long unsigned, ResourceRequest&, const ResourceResponse&);
     virtual bool shouldUseCredentialStorage(DocumentLoader*, long unsigned);
-    virtual void dispatchDidReceiveAuthenticationChallenge(DocumentLoader*, long unsigned int, const AuthenticationChallenge&) { notImplemented(); }
-    virtual void dispatchDidCancelAuthenticationChallenge(DocumentLoader*, long unsigned int, const AuthenticationChallenge&) { notImplemented(); }
-    virtual void dispatchDidReceiveResponse(DocumentLoader*, long unsigned int, const ResourceResponse&);
-    virtual void dispatchDidReceiveContentLength(DocumentLoader*, long unsigned int, int) { notImplemented(); }
-    virtual void dispatchDidFinishLoading(DocumentLoader*, long unsigned int) { notImplemented(); }
-    virtual void dispatchDidFailLoading(DocumentLoader*, long unsigned int, const ResourceError&) { notImplemented(); }
+    virtual void dispatchDidReceiveAuthenticationChallenge(DocumentLoader*, long unsigned, const AuthenticationChallenge&) { notImplemented(); }
+    virtual void dispatchDidCancelAuthenticationChallenge(DocumentLoader*, long unsigned, const AuthenticationChallenge&) { notImplemented(); }
+    virtual void dispatchDidReceiveResponse(DocumentLoader*, long unsigned, const ResourceResponse&);
+    virtual void dispatchDidReceiveContentLength(DocumentLoader*, long unsigned, int) { notImplemented(); }
+    virtual void dispatchDidFinishLoading(DocumentLoader*, long unsigned) { notImplemented(); }
+    virtual void dispatchDidFailLoading(DocumentLoader*, long unsigned, const ResourceError&) { notImplemented(); }
     virtual bool dispatchDidLoadResourceFromMemoryCache(DocumentLoader*, const ResourceRequest&, const ResourceResponse&, int) { notImplemented(); return false; }
     virtual void dispatchDidHandleOnloadEvents();
     virtual void dispatchDidReceiveServerRedirectForProvisionalLoad() { notImplemented(); }

Modified: trunk/Source/WebKit/blackberry/WebCoreSupport/GeolocationClientBlackBerry.cpp (149817 => 149818)


--- trunk/Source/WebKit/blackberry/WebCoreSupport/GeolocationClientBlackBerry.cpp	2013-05-09 16:13:05 UTC (rev 149817)
+++ trunk/Source/WebKit/blackberry/WebCoreSupport/GeolocationClientBlackBerry.cpp	2013-05-09 16:16:32 UTC (rev 149818)
@@ -156,10 +156,10 @@
 }
 
 void GeolocationClientBlackBerry::onLocationUpdate(double timestamp, double latitude, double longitude, double accuracy, double altitude, bool altitudeValid,
-                                                             double altitudeAccuracy, bool altitudeAccuracyValid, double speed, bool speedValid, double heading, bool headingValid)
+    double altitudeAccuracy, bool altitudeAccuracyValid, double speed, bool speedValid, double heading, bool headingValid)
 {
     m_lastPosition = GeolocationPosition::create(timestamp, latitude, longitude, accuracy, altitudeValid, altitude, altitudeAccuracyValid,
-                                                 altitudeAccuracy, headingValid, heading, speedValid, speed);
+        altitudeAccuracy, headingValid, heading, speedValid, speed);
     GeolocationController::from(m_webPagePrivate->m_page)->positionChanged(m_lastPosition.get());
 }
 

Modified: trunk/Source/WebKit/blackberry/WebCoreSupport/GeolocationClientBlackBerry.h (149817 => 149818)


--- trunk/Source/WebKit/blackberry/WebCoreSupport/GeolocationClientBlackBerry.h	2013-05-09 16:13:05 UTC (rev 149817)
+++ trunk/Source/WebKit/blackberry/WebCoreSupport/GeolocationClientBlackBerry.h	2013-05-09 16:16:32 UTC (rev 149818)
@@ -48,7 +48,7 @@
 
     virtual bool requiresHighAccuracy() { return m_accuracy; }
     virtual void onLocationUpdate(double timestamp, double latitude, double longitude, double accuracy, double altitude, bool altitudeValid, double altitudeAccuracy,
-                                  bool altitudeAccuracyValid, double speed, bool speedValid, double heading, bool headingValid);
+        bool altitudeAccuracyValid, double speed, bool speedValid, double heading, bool headingValid);
     virtual void onLocationError(const char* error);
     virtual void onPermission(const BlackBerry::Platform::String& origin, bool isAllowed);
 

Modified: trunk/Source/WebKit/blackberry/WebCoreSupport/IconDatabaseClientBlackBerry.cpp (149817 => 149818)


--- trunk/Source/WebKit/blackberry/WebCoreSupport/IconDatabaseClientBlackBerry.cpp	2013-05-09 16:13:05 UTC (rev 149817)
+++ trunk/Source/WebKit/blackberry/WebCoreSupport/IconDatabaseClientBlackBerry.cpp	2013-05-09 16:16:32 UTC (rev 149818)
@@ -45,7 +45,7 @@
     iconDatabase().setClient(this);
 
     m_initState = iconDatabase().open(BlackBerry::Platform::Settings::instance()->applicationDataDirectory().c_str(),
-                                      IconDatabase::defaultDatabaseFilename()) ? InitializeSucceeded : InitializeFailed;
+        IconDatabase::defaultDatabaseFilename()) ? InitializeSucceeded : InitializeFailed;
 
     return m_initState == InitializeSucceeded;
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to