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

Side by Side Diff: headless/lib/browser/headless_resource_dispatcher_host_delegate.h

Issue 2852633002: added a headlessresourcedispatcherhostdelegate so that we do not crash when a website requests a cl… (Closed)
Patch Set: Created 3 years, 7 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 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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698