Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: extensions/browser/api/web_request/extra_request_params.cc

Issue 568583002: Introduce WebRequestEventRouterDelegate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hide tab_id and window_id from extensions. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698