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

Side by Side Diff: components/offline_pages/core/client_policy_controller.h

Issue 2489443002: Move all components/offline_pages/ files into component/offline_pages/core (Closed)
Patch Set: rebase Created 4 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #ifndef COMPONENTS_OFFLINE_PAGES_CLIENT_POLICY_CONTROLLER_H_ 5 #ifndef COMPONENTS_OFFLINE_PAGES_CORE_CLIENT_POLICY_CONTROLLER_H_
6 #define COMPONENTS_OFFLINE_PAGES_CLIENT_POLICY_CONTROLLER_H_ 6 #define COMPONENTS_OFFLINE_PAGES_CORE_CLIENT_POLICY_CONTROLLER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <map> 10 #include <map>
11 #include <memory> 11 #include <memory>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/time/time.h" 15 #include "base/time/time.h"
16 #include "components/offline_pages/offline_page_client_policy.h" 16 #include "components/offline_pages/core/offline_page_client_policy.h"
17 17
18 namespace offline_pages { 18 namespace offline_pages {
19 19
20 // This is the class which is a singleton for offline page model 20 // This is the class which is a singleton for offline page model
21 // to get client policies based on namespaces. 21 // to get client policies based on namespaces.
22 class ClientPolicyController { 22 class ClientPolicyController {
23 public: 23 public:
24 ClientPolicyController(); 24 ClientPolicyController();
25 ~ClientPolicyController(); 25 ~ClientPolicyController();
26 26
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 // Memoizing results. 67 // Memoizing results.
68 mutable std::unique_ptr<std::vector<std::string>> download_namespace_cache_; 68 mutable std::unique_ptr<std::vector<std::string>> download_namespace_cache_;
69 mutable std::unique_ptr<std::vector<std::string>> recent_tab_namespace_cache_; 69 mutable std::unique_ptr<std::vector<std::string>> recent_tab_namespace_cache_;
70 mutable std::unique_ptr<std::vector<std::string>> show_in_original_tab_cache_; 70 mutable std::unique_ptr<std::vector<std::string>> show_in_original_tab_cache_;
71 71
72 DISALLOW_COPY_AND_ASSIGN(ClientPolicyController); 72 DISALLOW_COPY_AND_ASSIGN(ClientPolicyController);
73 }; 73 };
74 74
75 } // namespace offline_pages 75 } // namespace offline_pages
76 76
77 #endif // COMPONENTS_OFFLINE_PAGES_CLIENT_POLICY_CONTROLLER_H_ 77 #endif // COMPONENTS_OFFLINE_PAGES_CORE_CLIENT_POLICY_CONTROLLER_H_
OLDNEW
« no previous file with comments | « components/offline_pages/core/client_namespace_constants.cc ('k') | components/offline_pages/core/client_policy_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698