Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 | |
| 2 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 3 // Use of this source code is governed by a BSD-style license that can be | |
| 4 // found in the LICENSE file. | |
| 5 | |
| 6 #ifndef CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_URL_INTERCEPTOR_H_ | |
| 7 #define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_URL_INTERCEPTOR_H_ | |
| 8 | |
| 9 #include "net/url_request/url_request_interceptor.h" | |
| 10 | |
| 11 namespace content { | |
| 12 | |
| 13 class DevtoolsUrlRequestInterceptor : public net::URLRequestInterceptor { | |
|
pfeldman
2017/02/27 17:30:22
nuke this one.
alex clarke (OOO till 29th)
2017/02/27 22:20:26
Whoops that was intended for another patch. It's
| |
| 14 public: | |
| 15 }; | |
| 16 | |
| 17 } // namespace content | |
| 18 | |
| 19 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_URL_INTERCEPTOR_H_ | |
| OLD | NEW |