| Index: chrome/browser/policy/policy_service_stub.cc
|
| diff --git a/chrome/browser/policy/policy_service_stub.cc b/chrome/browser/policy/policy_service_stub.cc
|
| index 0bbfc631982e0895478924dd9ca6892abae846d6..6f69f7c3a759a1b84565d78db5892c11ee6332ef 100644
|
| --- a/chrome/browser/policy/policy_service_stub.cc
|
| +++ b/chrome/browser/policy/policy_service_stub.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "chrome/browser/policy/policy_service_stub.h"
|
|
|
| +#include "base/message_loop.h"
|
| +
|
| namespace policy {
|
|
|
| PolicyServiceStub::PolicyServiceStub() {}
|
| @@ -28,4 +30,8 @@ bool PolicyServiceStub::IsInitializationComplete() const {
|
| return true;
|
| }
|
|
|
| +void RefreshPolicies(const base::Closure& callback) {
|
| + MessageLoop::current()->PostTask(FROM_HERE, callback);
|
| +}
|
| +
|
| } // namespace policy
|
|
|