HomeSort by relevance Sort by last modified time
    Searched refs:RefreshPolicies (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium_org/chrome/browser/chromeos/policy/
proxy_policy_provider.h 27 virtual void RefreshPolicies() OVERRIDE;
proxy_policy_provider.cc 38 void ProxyPolicyProvider::RefreshPolicies() {
40 delegate_->RefreshPolicies();
42 // Subtle: if a RefreshPolicies() call comes after Shutdown() then the
device_local_account_policy_provider.h 24 // and RefreshPolicies becomes a no-op.
35 virtual void RefreshPolicies() OVERRIDE;
login_profile_policy_provider.h 29 virtual void RefreshPolicies() OVERRIDE;
proxy_policy_provider_unittest.cc 82 TEST_F(ProxyPolicyProviderTest, RefreshPolicies) {
84 proxy_provider_.RefreshPolicies();
92 EXPECT_CALL(mock_provider_, RefreshPolicies());
93 proxy_provider_.RefreshPolicies();
device_local_account_policy_provider.cc 39 void DeviceLocalAccountPolicyProvider::RefreshPolicies() {
login_profile_policy_provider.cc 81 void LoginProfilePolicyProvider::RefreshPolicies() {
84 device_policy_service_->RefreshPolicies(base::Bind(
  /external/chromium_org/components/policy/core/common/
forwarding_policy_provider.cc 38 void ForwardingPolicyProvider::RefreshPolicies() {
39 delegate_->RefreshPolicies();
47 // Asking the delegate to RefreshPolicies now means that the next
59 RefreshPolicies();
66 RefreshPolicies();
mock_configuration_policy_provider.h 27 MOCK_METHOD0(RefreshPolicies, void());
43 // Convenience method that installs an expectation on RefreshPolicies that
policy_service_stub.cc 30 void PolicyServiceStub::RefreshPolicies(const base::Closure& callback) {
policy_service_stub.h 33 virtual void RefreshPolicies(const base::Closure& callback) OVERRIDE;
async_policy_provider.h 42 virtual void RefreshPolicies() OVERRIDE;
45 // Helper for RefreshPolicies().
67 // Callback used to synchronize RefreshPolicies() calls with the background
configuration_policy_provider.h 67 virtual void RefreshPolicies() = 0;
forwarding_policy_provider.h 44 // |delegate_|. RefreshPolicies() calls are also forwarded, since this
48 virtual void RefreshPolicies() OVERRIDE;
mock_policy_service.h 34 MOCK_METHOD1(RefreshPolicies, void(const base::Closure&));
forwarding_policy_provider_unittest.cc 79 TEST_F(ForwardingPolicyProviderTest, RefreshPolicies) {
80 EXPECT_CALL(mock_provider_, RefreshPolicies());
81 forwarding_provider_.RefreshPolicies();
107 EXPECT_CALL(mock_provider_, RefreshPolicies()).Times(0);
113 EXPECT_CALL(mock_provider_, RefreshPolicies());
150 EXPECT_CALL(mock_provider_, RefreshPolicies());
174 EXPECT_CALL(mock_provider_, RefreshPolicies());
201 EXPECT_CALL(mock_provider_, RefreshPolicies());
mock_configuration_policy_provider.cc 33 EXPECT_CALL(*this, RefreshPolicies()).WillRepeatedly(
async_policy_provider.cc 70 void AsyncPolicyProvider::RefreshPolicies() {
73 // Subtle: RefreshPolicies() has a contract that requires the next policy
76 // invoked RefreshPolicies(), then by the next notification these policies
96 // This task can only enter if it was posted from RefreshPolicies(), and it
97 // hasn't been cancelled meanwhile by another call to RefreshPolicies().
100 // in RefreshPolicies() would have cancelled the current execution. So it's
110 base::Bind(&AsyncPolicyLoader::RefreshPolicies,
async_policy_provider_unittest.cc 129 TEST_F(AsyncPolicyProviderTest, RefreshPolicies) {
137 provider_->RefreshPolicies();
152 provider_->RefreshPolicies();
156 // Doesn't refresh if another RefreshPolicies request is made.
158 provider_->RefreshPolicies();
179 // RefreshPolicies.
187 // A Reload is triggered before RefreshPolicies, and it shouldn't trigger
194 provider_->RefreshPolicies();
configuration_policy_provider_test.cc 221 provider_->RefreshPolicies();
236 provider_->RefreshPolicies();
319 TEST_P(ConfigurationPolicyProviderTest, RefreshPolicies) {
327 provider_->RefreshPolicies();
336 provider_->RefreshPolicies();
389 provider_->RefreshPolicies();
async_policy_loader.h 85 void RefreshPolicies(scoped_refptr<SchemaMap> schema_map);
policy_service.h 74 virtual void RefreshPolicies(const base::Closure& callback) = 0;
policy_service_impl.h 48 virtual void RefreshPolicies(const base::Closure& callback) OVERRIDE;
87 // call to RefreshPolicies().
91 // RefreshPolicies() call.
  /external/chromium_org/chrome/browser/policy/cloud/
cloud_policy_browsertest.cc 280 policy_service->RefreshPolicies(run_loop.QuitClosure());
294 policy_service->RefreshPolicies(run_loop.QuitClosure());
309 policy_service->RefreshPolicies(run_loop.QuitClosure());
341 policy_service->RefreshPolicies(run_loop.QuitClosure());
360 policy_service->RefreshPolicies(run_loop.QuitClosure());
374 policy_service->RefreshPolicies(run_loop.QuitClosure());
  /external/chromium_org/components/policy/core/common/cloud/
cloud_policy_manager.h 64 virtual void RefreshPolicies() OVERRIDE;

Completed in 173 milliseconds

1 2