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

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

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 #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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698