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

Side by Side Diff: chrome/browser/policy/config_dir_policy_provider_unittest.cc

Issue 8477004: Have content/ create and destroy its own threads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: With this patchset, Chrome runs and exits normally on Linux. Created 9 years, 1 month 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 | Annotate | Revision Log
OLDNEW
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 "base/compiler_specific.h" 5 #include "base/compiler_specific.h"
6 #include "base/file_util.h" 6 #include "base/file_util.h"
7 #include "base/json/json_value_serializer.h" 7 #include "base/json/json_value_serializer.h"
8 #include "base/message_loop.h"
8 #include "base/scoped_temp_dir.h" 9 #include "base/scoped_temp_dir.h"
9 #include "base/string_number_conversions.h" 10 #include "base/string_number_conversions.h"
10 #include "base/values.h" 11 #include "base/values.h"
11 #include "chrome/browser/policy/config_dir_policy_provider.h" 12 #include "chrome/browser/policy/config_dir_policy_provider.h"
12 #include "chrome/browser/policy/configuration_policy_provider_test.h" 13 #include "chrome/browser/policy/configuration_policy_provider_test.h"
13 14
14 namespace policy { 15 namespace policy {
15 16
16 namespace { 17 namespace {
17 18
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 for (unsigned int i = 5; i <= 8; ++i) 164 for (unsigned int i = 5; i <= 8; ++i)
164 harness_.WriteConfigFile(test_dict_bar, base::IntToString(i)); 165 harness_.WriteConfigFile(test_dict_bar, base::IntToString(i));
165 166
166 ConfigDirPolicyProviderDelegate loader(harness_.test_dir()); 167 ConfigDirPolicyProviderDelegate loader(harness_.test_dir());
167 scoped_ptr<base::DictionaryValue> policy(loader.Load()); 168 scoped_ptr<base::DictionaryValue> policy(loader.Load());
168 EXPECT_TRUE(policy.get()); 169 EXPECT_TRUE(policy.get());
169 EXPECT_TRUE(policy->Equals(&test_dict_foo)); 170 EXPECT_TRUE(policy->Equals(&test_dict_foo));
170 } 171 }
171 172
172 } // namespace policy 173 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698