| 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_ACTION_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_ACTION_H_ |
| 6 #define EXTENSIONS_BROWSER_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/macros.h" |
| 13 #include "base/memory/linked_ptr.h" | 14 #include "base/memory/linked_ptr.h" |
| 14 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
| 15 #include "extensions/browser/api/declarative/declarative_rule.h" | 16 #include "extensions/browser/api/declarative/declarative_rule.h" |
| 16 #include "extensions/browser/api/declarative_webrequest/request_stage.h" | 17 #include "extensions/browser/api/declarative_webrequest/request_stage.h" |
| 17 #include "extensions/browser/api/web_request/web_request_api_helpers.h" | 18 #include "extensions/browser/api/web_request/web_request_api_helpers.h" |
| 18 #include "extensions/common/api/events.h" | 19 #include "extensions/common/api/events.h" |
| 19 #include "url/gurl.h" | 20 #include "url/gurl.h" |
| 20 | 21 |
| 21 class WebRequestPermission; | 22 class WebRequestPermission; |
| 22 | 23 |
| (...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 private: | 462 private: |
| 462 ~WebRequestSendMessageToExtensionAction() override; | 463 ~WebRequestSendMessageToExtensionAction() override; |
| 463 | 464 |
| 464 std::string message_; | 465 std::string message_; |
| 465 DISALLOW_COPY_AND_ASSIGN(WebRequestSendMessageToExtensionAction); | 466 DISALLOW_COPY_AND_ASSIGN(WebRequestSendMessageToExtensionAction); |
| 466 }; | 467 }; |
| 467 | 468 |
| 468 } // namespace extensions | 469 } // namespace extensions |
| 469 | 470 |
| 470 #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_ACTION_H_ | 471 #endif // EXTENSIONS_BROWSER_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_ACTION_H_ |
| OLD | NEW |