| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_MAGNIFICATION_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_MAGNIFICATION_MANAGER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_MAGNIFICATION_MANAGER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_MAGNIFICATION_MANAGER_H_ |
| 7 | 7 |
| 8 #include "ash/common/accessibility_types.h" | 8 #include "ash/accessibility_types.h" |
| 9 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" | 9 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" |
| 10 | 10 |
| 11 class Profile; | 11 class Profile; |
| 12 | 12 |
| 13 namespace chromeos { | 13 namespace chromeos { |
| 14 | 14 |
| 15 // MagnificationManager controls the full screen magnifier from chrome-browser | 15 // MagnificationManager controls the full screen magnifier from chrome-browser |
| 16 // side (not ash side). | 16 // side (not ash side). |
| 17 // | 17 // |
| 18 // MagnificationManager does: | 18 // MagnificationManager does: |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 54 |
| 55 virtual void SetProfileForTest(Profile* profile) = 0; | 55 virtual void SetProfileForTest(Profile* profile) = 0; |
| 56 | 56 |
| 57 protected: | 57 protected: |
| 58 virtual ~MagnificationManager() {} | 58 virtual ~MagnificationManager() {} |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 } // namespace chromeos | 61 } // namespace chromeos |
| 62 | 62 |
| 63 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_MAGNIFICATION_MANAGER_H_ | 63 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_MAGNIFICATION_MANAGER_H_ |
| OLD | NEW |