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_WEBREQUEST_WEBREQUEST_ACTION_H
_ | 5 #ifndef EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_ACTION_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_ACTION_H
_ | 6 #define EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_ACTION_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
13 #include "base/memory/linked_ptr.h" | 13 #include "base/memory/linked_ptr.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "chrome/browser/extensions/api/web_request/web_request_api_helpers.h" | |
16 #include "extensions/browser/api/declarative/declarative_rule.h" | 15 #include "extensions/browser/api/declarative/declarative_rule.h" |
17 #include "extensions/browser/api/declarative_webrequest/request_stage.h" | 16 #include "extensions/browser/api/declarative_webrequest/request_stage.h" |
| 17 #include "extensions/browser/api/web_request/web_request_api_helpers.h" |
18 #include "extensions/common/api/events.h" | 18 #include "extensions/common/api/events.h" |
19 #include "url/gurl.h" | 19 #include "url/gurl.h" |
20 | 20 |
21 class WebRequestPermission; | 21 class WebRequestPermission; |
22 | 22 |
23 namespace base { | 23 namespace base { |
24 class DictionaryValue; | 24 class DictionaryValue; |
25 class Time; | 25 class Time; |
26 class Value; | 26 class Value; |
27 } | 27 } |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 | 460 |
461 private: | 461 private: |
462 virtual ~WebRequestSendMessageToExtensionAction(); | 462 virtual ~WebRequestSendMessageToExtensionAction(); |
463 | 463 |
464 std::string message_; | 464 std::string message_; |
465 DISALLOW_COPY_AND_ASSIGN(WebRequestSendMessageToExtensionAction); | 465 DISALLOW_COPY_AND_ASSIGN(WebRequestSendMessageToExtensionAction); |
466 }; | 466 }; |
467 | 467 |
468 } // namespace extensions | 468 } // namespace extensions |
469 | 469 |
470 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_ACTIO
N_H_ | 470 #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_ACTION_H_ |
OLD | NEW |