OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 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 HEADLESS_LIB_BROWSER_HEADLESS_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ |
| 6 #define HEADLESS_LIB_BROWSER_HEADLESS_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ |
| 7 |
| 8 #include "content/public/browser/resource_dispatcher_host_delegate.h" |
| 9 |
| 10 namespace headless { |
| 11 |
| 12 class HeadlessResourceDispatcherHostDelegate |
| 13 : public content::ResourceDispatcherHostDelegate { |
| 14 public: |
| 15 HeadlessResourceDispatcherHostDelegate(); |
| 16 ~HeadlessResourceDispatcherHostDelegate() override; |
| 17 |
| 18 private: |
| 19 DISALLOW_COPY_AND_ASSIGN(HeadlessResourceDispatcherHostDelegate); |
| 20 }; |
| 21 |
| 22 } // namespace headless |
| 23 |
| 24 #endif // HEADLESS_LIB_BROWSER_HEADLESS_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ |
OLD | NEW |