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 EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONDITION_ATTRI
BUTE_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONDITION_ATTRI
BUTE_H_ |
6 #define EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONDITION_ATTRI
BUTE_H_ | 6 #define EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONDITION_ATTRI
BUTE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/macros.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "content/public/common/resource_type.h" | 14 #include "content/public/common/resource_type.h" |
15 #include "extensions/browser/api/declarative_webrequest/request_stage.h" | 15 #include "extensions/browser/api/declarative_webrequest/request_stage.h" |
16 #include "extensions/common/api/events.h" | 16 #include "extensions/common/api/events.h" |
17 | 17 |
18 namespace base { | 18 namespace base { |
19 class Value; | 19 class Value; |
20 } | 20 } |
21 | 21 |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
260 ~WebRequestConditionAttributeStages() override; | 260 ~WebRequestConditionAttributeStages() override; |
261 | 261 |
262 const int allowed_stages_; // Composition of RequestStage values. | 262 const int allowed_stages_; // Composition of RequestStage values. |
263 | 263 |
264 DISALLOW_COPY_AND_ASSIGN(WebRequestConditionAttributeStages); | 264 DISALLOW_COPY_AND_ASSIGN(WebRequestConditionAttributeStages); |
265 }; | 265 }; |
266 | 266 |
267 } // namespace extensions | 267 } // namespace extensions |
268 | 268 |
269 #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONDITION_AT
TRIBUTE_H_ | 269 #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_CONDITION_AT
TRIBUTE_H_ |
OLD | NEW |