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

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

Issue 92263002: Move AsyncPolicyProvider, etc. to components/policy/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years 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
« no previous file with comments | « chrome/browser/policy/policy_loader_mac.h ('k') | chrome/browser/policy/policy_loader_win.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <CoreFoundation/CoreFoundation.h> 5 #include <CoreFoundation/CoreFoundation.h>
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/mac/scoped_cftyperef.h" 10 #include "base/mac/scoped_cftyperef.h"
11 #include "base/strings/sys_string_conversions.h" 11 #include "base/strings/sys_string_conversions.h"
12 #include "base/values.h" 12 #include "base/values.h"
13 #include "chrome/browser/policy/async_policy_provider.h"
14 #include "chrome/browser/policy/policy_loader_mac.h" 13 #include "chrome/browser/policy/policy_loader_mac.h"
15 #include "chrome/browser/policy/preferences_mock_mac.h" 14 #include "chrome/browser/policy/preferences_mock_mac.h"
15 #include "components/policy/core/common/async_policy_provider.h"
16 #include "components/policy/core/common/configuration_policy_provider_test.h" 16 #include "components/policy/core/common/configuration_policy_provider_test.h"
17 #include "components/policy/core/common/external_data_fetcher.h" 17 #include "components/policy/core/common/external_data_fetcher.h"
18 #include "components/policy/core/common/policy_bundle.h" 18 #include "components/policy/core/common/policy_bundle.h"
19 #include "components/policy/core/common/policy_map.h" 19 #include "components/policy/core/common/policy_map.h"
20 #include "testing/gtest/include/gtest/gtest.h" 20 #include "testing/gtest/include/gtest/gtest.h"
21 21
22 using base::ScopedCFTypeRef; 22 using base::ScopedCFTypeRef;
23 23
24 namespace policy { 24 namespace policy {
25 25
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 ScopedCFTypeRef<CFPropertyListRef> property(CreatePropertyFromValue(&root)); 331 ScopedCFTypeRef<CFPropertyListRef> property(CreatePropertyFromValue(&root));
332 ASSERT_TRUE(property); 332 ASSERT_TRUE(property);
333 scoped_ptr<base::Value> value( 333 scoped_ptr<base::Value> value(
334 PolicyLoaderMac::CreateValueFromProperty(property)); 334 PolicyLoaderMac::CreateValueFromProperty(property));
335 ASSERT_TRUE(value.get()); 335 ASSERT_TRUE(value.get());
336 336
337 EXPECT_TRUE(root.Equals(value.get())); 337 EXPECT_TRUE(root.Equals(value.get()));
338 } 338 }
339 339
340 } // namespace policy 340 } // namespace policy
OLDNEW
« no previous file with comments | « chrome/browser/policy/policy_loader_mac.h ('k') | chrome/browser/policy/policy_loader_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698