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

Side by Side Diff: chrome/browser/encoding_menu_controller_unittest.cc

Issue 3129007: FBTF: Forward declare everything possible in testing_profile.h (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: argh mac problems now Created 10 years, 4 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 unified diff | Download patch
OLDNEW
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/encoding_menu_controller.h" 5 #include "chrome/browser/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_dll_resource.h" 10 #include "chrome/app/chrome_dll_resource.h"
11 #include "chrome/browser/pref_service.h"
11 #include "chrome/browser/profile.h" 12 #include "chrome/browser/profile.h"
12 #include "chrome/common/pref_names.h" 13 #include "chrome/common/pref_names.h"
13 #include "chrome/test/testing_profile.h" 14 #include "chrome/test/testing_profile.h"
14 #include "testing/gtest/include/gtest/gtest.h" 15 #include "testing/gtest/include/gtest/gtest.h"
15 16
16 17
17 class EncodingMenuControllerTest : public testing::Test { 18 class EncodingMenuControllerTest : public testing::Test {
18 }; 19 };
19 20
20 TEST_F(EncodingMenuControllerTest, EncodingIDsBelongTest) { 21 TEST_F(EncodingMenuControllerTest, EncodingIDsBelongTest) {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 encoding, 84 encoding,
84 valid_encodings[i]); 85 valid_encodings[i]);
85 // 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.
86 ASSERT_FALSE(on && encoding_is_enabled); 87 ASSERT_FALSE(on && encoding_is_enabled);
87 encoding_is_enabled |= on; 88 encoding_is_enabled |= on;
88 } 89 }
89 90
90 // Make sure at least one encoding is enabled. 91 // Make sure at least one encoding is enabled.
91 ASSERT_TRUE(encoding_is_enabled); 92 ASSERT_TRUE(encoding_is_enabled);
92 } 93 }
OLDNEW
« no previous file with comments | « chrome/browser/download/download_manager_unittest.cc ('k') | chrome/browser/extensions/extension_cookies_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698