Title: [119993] trunk/Source/WebKit/chromium
Revision
119993
Author
[email protected]
Date
2012-06-11 11:35:09 -0700 (Mon, 11 Jun 2012)

Log Message

[Chromium] Removing long WebDeviceOrientation constructor
https://bugs.webkit.org/show_bug.cgi?id=88779

Patch by Amy Ousterhout <[email protected]> on 2012-06-11
Reviewed by Adam Barth.

Removing the WebDeviceOrientation constructor with nine parameters.
Chromium has been changed to use the default constructor and setter
functions instead (see https://chromiumcodereview.appspot.com/10542025/).

* public/WebDeviceOrientation.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (119992 => 119993)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-06-11 18:29:22 UTC (rev 119992)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-06-11 18:35:09 UTC (rev 119993)
@@ -1,3 +1,16 @@
+2012-06-11  Amy Ousterhout  <[email protected]>
+
+        [Chromium] Removing long WebDeviceOrientation constructor
+        https://bugs.webkit.org/show_bug.cgi?id=88779
+
+        Reviewed by Adam Barth.
+
+        Removing the WebDeviceOrientation constructor with nine parameters.
+        Chromium has been changed to use the default constructor and setter
+        functions instead (see https://chromiumcodereview.appspot.com/10542025/).
+
+        * public/WebDeviceOrientation.h:
+
 2012-06-11  David Dorwin  <[email protected]>
 
         [chromium] Provide access to the WebPlugin created by the helper plugin widget

Modified: trunk/Source/WebKit/chromium/public/WebDeviceOrientation.h (119992 => 119993)


--- trunk/Source/WebKit/chromium/public/WebDeviceOrientation.h	2012-06-11 18:29:22 UTC (rev 119992)
+++ trunk/Source/WebKit/chromium/public/WebDeviceOrientation.h	2012-06-11 18:35:09 UTC (rev 119993)
@@ -35,19 +35,6 @@
 
 class WebDeviceOrientation {
 public:
-    // FIXME: Remove once Chromium is updated.
-    WebDeviceOrientation(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute = false, bool absolute = false)
-        : m_isNull(false)
-        , m_canProvideAlpha(canProvideAlpha)
-        , m_alpha(alpha)
-        , m_canProvideBeta(canProvideBeta)
-        , m_beta(beta)
-        , m_canProvideGamma(canProvideGamma)
-        , m_gamma(gamma)
-        , m_canProvideAbsolute(canProvideAbsolute)
-        , m_absolute(absolute)
-    {
-    }
     WebDeviceOrientation()
         : m_isNull(true)
         , m_canProvideAlpha(false)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to