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 CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_ACTION_H
_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_ACTION_H
_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_ACTION_H
_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <list> | 9 #include <list> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/memory/linked_ptr.h" | 14 #include "base/memory/linked_ptr.h" |
15 #include "chrome/browser/extensions/api/declarative_webrequest/request_stages.h" | 15 #include "chrome/browser/extensions/api/declarative_webrequest/request_stages.h" |
16 #include "chrome/common/extensions/api/declarative.h" | 16 #include "chrome/common/extensions/api/events.h" |
17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
18 | 18 |
19 namespace base { | 19 namespace base { |
20 class DictionaryValue; | 20 class DictionaryValue; |
21 class Time; | 21 class Time; |
22 class Value; | 22 class Value; |
23 } | 23 } |
24 | 24 |
25 namespace extension_web_request_api_helpers { | 25 namespace extension_web_request_api_helpers { |
26 struct EventResponseDelta; | 26 struct EventResponseDelta; |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 | 150 |
151 DISALLOW_COPY_AND_ASSIGN(WebRequestRedirectAction); | 151 DISALLOW_COPY_AND_ASSIGN(WebRequestRedirectAction); |
152 }; | 152 }; |
153 | 153 |
154 // TODO(battre) Implement further actions: | 154 // TODO(battre) Implement further actions: |
155 // Redirect to constant url, Redirect by RegEx, Set header, Remove header, ... | 155 // Redirect to constant url, Redirect by RegEx, Set header, Remove header, ... |
156 | 156 |
157 } // namespace extensions | 157 } // namespace extensions |
158 | 158 |
159 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_ACTIO
N_H_ | 159 #endif // CHROME_BROWSER_EXTENSIONS_API_DECLARATIVE_WEBREQUEST_WEBREQUEST_ACTIO
N_H_ |
OLD | NEW |