OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef EXTENSIONS_BROWSER_API_WEB_REQUEST_EXTRA_REQUEST_PARAMS_H_ |
| 6 #define EXTENSIONS_BROWSER_API_WEB_REQUEST_EXTRA_REQUEST_PARAMS_H_ |
| 7 |
| 8 #include "base/values.h" |
| 9 |
| 10 namespace net { |
| 11 class URLRequest; |
| 12 } // namespace net |
| 13 |
| 14 class ExtraRequestParams { |
| 15 public: |
| 16 ExtraRequestParams(); |
| 17 explicit ExtraRequestParams(const ExtraRequestParams& params); |
| 18 virtual ~ExtraRequestParams(); |
| 19 |
| 20 virtual bool OnInitFromValueCheck(const base::DictionaryValue& value); |
| 21 |
| 22 virtual bool OnGetMatchingListenersImplCheck(net::URLRequest* request) const; |
| 23 }; |
| 24 |
| 25 #endif // EXTENSIONS_BROWSER_API_WEB_REQUEST_EXTRA_REQUEST_PARAMS_H_ |
OLD | NEW |