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/web_request_event_router_delegate.h
" |
| 6 |
| 7 namespace extensions { |
| 8 |
| 9 WebRequestEventRouterDelegate::WebRequestEventRouterDelegate() { |
| 10 } |
| 11 |
| 12 WebRequestEventRouterDelegate::~WebRequestEventRouterDelegate() { |
| 13 } |
| 14 |
| 15 bool WebRequestEventRouterDelegate::OnGetMatchingListenersImplCheck( |
| 16 int tab_id, int window_id, net::URLRequest* request) { |
| 17 return false; |
| 18 } |
| 19 |
| 20 } // namespace extensions |
OLD | NEW |