| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/profiles/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/base/testing_profile.h" | 14 #include "chrome/test/base/testing_profile.h" |
| 15 #include "content/test/test_browser_thread.h" | 15 #include "content/test/test_browser_thread.h" |
| 16 #include "testing/gtest/include/gtest/gtest.h" | 16 #include "testing/gtest/include/gtest/gtest.h" |
| 17 | 17 |
| 18 using content::BrowserThread; |
| 19 |
| 18 class EncodingMenuControllerTest : public testing::Test { | 20 class EncodingMenuControllerTest : public testing::Test { |
| 19 public: | 21 public: |
| 20 EncodingMenuControllerTest() | 22 EncodingMenuControllerTest() |
| 21 : ui_thread_(BrowserThread::UI, &message_loop_) {} | 23 : ui_thread_(BrowserThread::UI, &message_loop_) {} |
| 22 private: | 24 private: |
| 23 MessageLoop message_loop_; | 25 MessageLoop message_loop_; |
| 24 content::TestBrowserThread ui_thread_; | 26 content::TestBrowserThread ui_thread_; |
| 25 }; | 27 }; |
| 26 | 28 |
| 27 TEST_F(EncodingMenuControllerTest, EncodingIDsBelongTest) { | 29 TEST_F(EncodingMenuControllerTest, EncodingIDsBelongTest) { |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 encoding, | 92 encoding, |
| 91 valid_encodings[i]); | 93 valid_encodings[i]); |
| 92 // Only one item in the encoding menu can be selected at a time. | 94 // Only one item in the encoding menu can be selected at a time. |
| 93 ASSERT_FALSE(on && encoding_is_enabled); | 95 ASSERT_FALSE(on && encoding_is_enabled); |
| 94 encoding_is_enabled |= on; | 96 encoding_is_enabled |= on; |
| 95 } | 97 } |
| 96 | 98 |
| 97 // Make sure at least one encoding is enabled. | 99 // Make sure at least one encoding is enabled. |
| 98 ASSERT_TRUE(encoding_is_enabled); | 100 ASSERT_TRUE(encoding_is_enabled); |
| 99 } | 101 } |
| OLD | NEW |