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

Unified Diff: athena/screen/public/screen_manager.h

Issue 431183003: Rotate screen in response to accelerator or device orientation sensors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update DEPS to specific file used in ui/gfx. Created 6 years, 4 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: athena/screen/public/screen_manager.h
diff --git a/athena/screen/public/screen_manager.h b/athena/screen/public/screen_manager.h
index 8a82f6c617272a0b59d7d527e61894dd5d3fcd4a..825ec305c0b6e160683097a87fd1215e8fc2df47 100644
--- a/athena/screen/public/screen_manager.h
+++ b/athena/screen/public/screen_manager.h
@@ -8,6 +8,7 @@
#include <string>
#include "athena/athena_export.h"
+#include "ui/gfx/display.h"
namespace aura {
class Window;
@@ -64,6 +65,12 @@ class ATHENA_EXPORT ScreenManager {
// Sets the background image.
virtual void SetBackgroundImage(const gfx::ImageSkia& image) = 0;
+ // Get/set screen rotation.
+ // TODO(flackr): Extract and use ash DisplayManager to get/set rotation
+ // instead: http://crbug.com/401044.
+ virtual gfx::Display::Rotation GetRotation() = 0;
+ virtual void SetRotation(gfx::Display::Rotation rotation) = 0;
+
// Create a focus rules.
// TODO(oshima): Make this virtual function.
static wm::FocusRules* CreateFocusRules();

Powered by Google App Engine
This is Rietveld 408576698