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

Side by Side Diff: chrome/browser/chromeos/policy/proxy_policy_provider_unittest.cc

Issue 78763002: Move PolicyMap and its dependencies to components/policy/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: export nested struct 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
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 "base/basictypes.h" 5 #include "base/basictypes.h"
6 #include "base/callback.h" 6 #include "base/callback.h"
7 #include "chrome/browser/chromeos/policy/proxy_policy_provider.h" 7 #include "chrome/browser/chromeos/policy/proxy_policy_provider.h"
8 #include "chrome/browser/policy/external_data_fetcher.h"
9 #include "chrome/browser/policy/mock_configuration_policy_provider.h" 8 #include "chrome/browser/policy/mock_configuration_policy_provider.h"
10 #include "chrome/browser/policy/schema_registry.h" 9 #include "chrome/browser/policy/schema_registry.h"
10 #include "components/policy/core/common/external_data_fetcher.h"
11 #include "testing/gmock/include/gmock/gmock.h" 11 #include "testing/gmock/include/gmock/gmock.h"
12 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
13 13
14 using testing::Mock; 14 using testing::Mock;
15 15
16 namespace policy { 16 namespace policy {
17 17
18 class ProxyPolicyProviderTest : public testing::Test { 18 class ProxyPolicyProviderTest : public testing::Test {
19 protected: 19 protected:
20 ProxyPolicyProviderTest() { 20 ProxyPolicyProviderTest() {
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 proxy_provider_.RefreshPolicies(); 93 proxy_provider_.RefreshPolicies();
94 Mock::VerifyAndClearExpectations(&observer_); 94 Mock::VerifyAndClearExpectations(&observer_);
95 Mock::VerifyAndClearExpectations(&mock_provider_); 95 Mock::VerifyAndClearExpectations(&mock_provider_);
96 96
97 EXPECT_CALL(observer_, OnUpdatePolicy(&proxy_provider_)); 97 EXPECT_CALL(observer_, OnUpdatePolicy(&proxy_provider_));
98 mock_provider_.UpdatePolicy(scoped_ptr<PolicyBundle>(new PolicyBundle())); 98 mock_provider_.UpdatePolicy(scoped_ptr<PolicyBundle>(new PolicyBundle()));
99 Mock::VerifyAndClearExpectations(&observer_); 99 Mock::VerifyAndClearExpectations(&observer_);
100 } 100 }
101 101
102 } // namespace policy 102 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698