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 #include "extensions/browser/api/web_request/extra_request_params.h" |
| 6 |
| 7 ExtraRequestParams::ExtraRequestParams() { |
| 8 } |
| 9 |
| 10 ExtraRequestParams::ExtraRequestParams(const ExtraRequestParams& params) { |
| 11 } |
| 12 |
| 13 ExtraRequestParams::~ExtraRequestParams() { |
| 14 } |
| 15 |
| 16 bool ExtraRequestParams::OnInitFromValueCheck( |
| 17 const base::DictionaryValue& value) { |
| 18 return false; |
| 19 } |
| 20 |
| 21 bool ExtraRequestParams::OnGetMatchingListenersImplCheck( |
| 22 net::URLRequest* request) |
| 23 const { |
| 24 return false; |
| 25 } |
OLD | NEW |