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

Unified Diff: chrome/browser/chromeos/accessibility/magnification_manager.h

Issue 2078393005: mash: Move accessibility_types.h from ui namespace to ash namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a11y
Patch Set: fix chromevox code generated from js Created 4 years, 6 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: chrome/browser/chromeos/accessibility/magnification_manager.h
diff --git a/chrome/browser/chromeos/accessibility/magnification_manager.h b/chrome/browser/chromeos/accessibility/magnification_manager.h
index 0defb89c3f307df3de8950204f37635980ac727d..6bebda3ca9c5d4ee34996fcaebdb5586b0d362a4 100644
--- a/chrome/browser/chromeos/accessibility/magnification_manager.h
+++ b/chrome/browser/chromeos/accessibility/magnification_manager.h
@@ -5,6 +5,7 @@
#ifndef CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_MAGNIFICATION_MANAGER_H_
#define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_MAGNIFICATION_MANAGER_H_
+#include "ash/common/accessibility_types.h"
#include "chrome/browser/chromeos/accessibility/accessibility_manager.h"
class Profile;
@@ -37,13 +38,13 @@ class MagnificationManager {
virtual bool IsMagnifierEnabled() const = 0;
// Returns the current type of the screen magnifier.
- virtual ui::MagnifierType GetMagnifierType() const = 0;
+ virtual ash::MagnifierType GetMagnifierType() const = 0;
// Enables the screen magnifier.
virtual void SetMagnifierEnabled(bool enabled) = 0;
// Changes the type of the screen magnifier.
- virtual void SetMagnifierType(ui::MagnifierType type) = 0;
+ virtual void SetMagnifierType(ash::MagnifierType type) = 0;
// Saves the magnifier scale to the pref.
virtual void SaveScreenMagnifierScale(double scale) = 0;

Powered by Google App Engine
This is Rietveld 408576698