| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/ui/toolbar/encoding_menu_controller.h" | 5 #include "chrome/browser/ui/toolbar/encoding_menu_controller.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "chrome/app/chrome_command_ids.h" | 10 #include "chrome/app/chrome_command_ids.h" |
| 11 #include "chrome/browser/prefs/pref_service.h" | 11 #include "chrome/browser/prefs/pref_service.h" |
| 12 #include "chrome/browser/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
| 13 #include "chrome/common/pref_names.h" | 13 #include "chrome/common/pref_names.h" |
| 14 #include "chrome/test/testing_profile.h" | 14 #include "chrome/test/testing_profile.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 | 16 |
| 17 | 17 |
| 18 class EncodingMenuControllerTest : public testing::Test { | 18 class EncodingMenuControllerTest : public testing::Test { |
| 19 }; | 19 }; |
| 20 | 20 |
| 21 TEST_F(EncodingMenuControllerTest, EncodingIDsBelongTest) { | 21 TEST_F(EncodingMenuControllerTest, EncodingIDsBelongTest) { |
| 22 EncodingMenuController controller; | 22 EncodingMenuController controller; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 encoding, | 84 encoding, |
| 85 valid_encodings[i]); | 85 valid_encodings[i]); |
| 86 // Only one item in the encoding menu can be selected at a time. | 86 // Only one item in the encoding menu can be selected at a time. |
| 87 ASSERT_FALSE(on && encoding_is_enabled); | 87 ASSERT_FALSE(on && encoding_is_enabled); |
| 88 encoding_is_enabled |= on; | 88 encoding_is_enabled |= on; |
| 89 } | 89 } |
| 90 | 90 |
| 91 // Make sure at least one encoding is enabled. | 91 // Make sure at least one encoding is enabled. |
| 92 ASSERT_TRUE(encoding_is_enabled); | 92 ASSERT_TRUE(encoding_is_enabled); |
| 93 } | 93 } |
| OLD | NEW |