OLD | NEW |
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 #ifndef CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_RULES_REGISTRY_WITH_CACHE_H__ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_RULES_REGISTRY_WITH_CACHE_H__ |
6 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_RULES_REGISTRY_WITH_CACHE_H__ | 6 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_RULES_REGISTRY_WITH_CACHE_H__ |
7 #pragma once | |
8 | 7 |
9 #include "chrome/browser/extensions/api/declarative/rules_registry.h" | 8 #include "chrome/browser/extensions/api/declarative/rules_registry.h" |
10 | 9 |
11 #include <map> | 10 #include <map> |
12 #include <string> | 11 #include <string> |
13 #include <vector> | 12 #include <vector> |
14 | 13 |
15 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
16 #include "base/callback_forward.h" | 15 #include "base/callback_forward.h" |
17 | 16 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 | 93 |
95 RulesDictionary rules_; | 94 RulesDictionary rules_; |
96 | 95 |
97 scoped_ptr<Delegate> delegate_; | 96 scoped_ptr<Delegate> delegate_; |
98 std::vector<base::Closure> ready_callbacks_; | 97 std::vector<base::Closure> ready_callbacks_; |
99 }; | 98 }; |
100 | 99 |
101 } // namespace extensions | 100 } // namespace extensions |
102 | 101 |
103 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_RULES_REGISTRY_WITH_CACHE_H
__ | 102 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_RULES_REGISTRY_WITH_CACHE_H
__ |
OLD | NEW |