OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #include "chrome/browser/chromeos/accessibility/magnification_manager.h" | 5 #include "chrome/browser/chromeos/accessibility/magnification_manager.h" |
6 | 6 |
7 #include "ash/magnifier/magnifier_constants.h" | 7 #include "ash/magnifier/magnifier_constants.h" |
8 #include "ash/test/ash_test_base.h" | 8 #include "ash/test/ash_test_base.h" |
9 #include "base/prefs/pref_service.h" | 9 #include "base/prefs/pref_service.h" |
10 #include "chrome/common/chrome_notification_types.h" | 10 #include "chrome/browser/chrome_notification_types.h" |
11 #include "chrome/common/pref_names.h" | 11 #include "chrome/common/pref_names.h" |
12 #include "chrome/test/base/testing_profile.h" | 12 #include "chrome/test/base/testing_profile.h" |
13 #include "content/public/browser/notification_service.h" | 13 #include "content/public/browser/notification_service.h" |
14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
15 | 15 |
16 namespace chromeos { | 16 namespace chromeos { |
17 namespace { | 17 namespace { |
18 | 18 |
19 class MockMagnificationObserver : public content::NotificationObserver { | 19 class MockMagnificationObserver : public content::NotificationObserver { |
20 public: | 20 public: |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 EXPECT_TRUE(IsMagnifierEnabled()); | 131 EXPECT_TRUE(IsMagnifierEnabled()); |
132 EXPECT_EQ(GetMagnifierType(), ash::MAGNIFIER_FULL); | 132 EXPECT_EQ(GetMagnifierType(), ash::MAGNIFIER_FULL); |
133 | 133 |
134 // Disables magnifier, and confirm the status is set successfully. | 134 // Disables magnifier, and confirm the status is set successfully. |
135 DisableMagnifier(); | 135 DisableMagnifier(); |
136 EXPECT_FALSE(IsMagnifierEnabled()); | 136 EXPECT_FALSE(IsMagnifierEnabled()); |
137 EXPECT_EQ(GetMagnifierType(), ash::MAGNIFIER_FULL); | 137 EXPECT_EQ(GetMagnifierType(), ash::MAGNIFIER_FULL); |
138 } | 138 } |
139 | 139 |
140 } // namespace chromeos | 140 } // namespace chromeos |
OLD | NEW |