Chromium Code Reviews| Index: chrome/browser/policy/user_policy_cache.h |
| diff --git a/chrome/browser/policy/user_policy_cache.h b/chrome/browser/policy/user_policy_cache.h |
| index f60c82dbcfbdd8b16fa173bfb7c83aecf7267ed1..208745ce125c58b120922e547042bb408e2038a2 100644 |
| --- a/chrome/browser/policy/user_policy_cache.h |
| +++ b/chrome/browser/policy/user_policy_cache.h |
| @@ -8,13 +8,13 @@ |
| #include <string> |
| -#include "base/file_path.h" |
| #include "base/memory/ref_counted.h" |
| #include "base/memory/weak_ptr.h" |
| +#include "base/values.h" |
| #include "chrome/browser/policy/cloud_policy_cache_base.h" |
| #include "chrome/browser/policy/user_policy_disk_cache.h" |
| -namespace em = enterprise_management; |
| +class FilePath; |
| namespace enterprise_management { |
| class CachedCloudPolicyResponse; |
|
pastarmovj
2011/09/20 13:14:08
Again one empty line between the namespace and its
Joao da Silva
2011/09/20 18:51:17
Done.
|
| @@ -23,8 +23,12 @@ class GenericValue; |
| // </Old-style policy support> |
| } // namespace enterprise_management |
| +namespace em = enterprise_management; |
| + |
| namespace policy { |
| +class PolicyMap; |
| + |
| // CloudPolicyCacheBase implementation that persists policy information |
| // into the file specified by the c'tor parameter |backing_file_path|. |
| class UserPolicyCache : public CloudPolicyCacheBase, |