Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Unified Diff: public/platform/WebScreenOrientationListener.h

Issue 219463003: Screen Orientation API: cleanup, simplify and fix implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: public/platform/WebScreenOrientationListener.h
diff --git a/public/platform/WebScreenOrientationListener.h b/public/platform/WebScreenOrientationListener.h
index 48d1c64c7b132f47e83f4e50a92e1e9270917b4b..0f9586b0980641b9d00f4d190122166938f4d3e7 100644
--- a/public/platform/WebScreenOrientationListener.h
+++ b/public/platform/WebScreenOrientationListener.h
@@ -5,7 +5,7 @@
#ifndef WebScreenOrientationListener_h
#define WebScreenOrientationListener_h
-#include "WebScreenOrientation.h"
+#include "WebScreenOrientationType.h"
namespace blink {
@@ -14,7 +14,7 @@ public:
virtual ~WebScreenOrientationListener() { }
// This method is called every time the screen orientation changes.
- virtual void didChangeScreenOrientation(WebScreenOrientation) = 0;
+ virtual void didChangeScreenOrientation(WebScreenOrientationType) = 0;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698