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

Side by Side Diff: components/devtools_http_handler/devtools_http_handler_delegate.h

Issue 2300703005: DevTools: merge devtools_http_handler into content - it is used in all the embedders anyways. (Closed)
Patch Set: for_landing! Created 4 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) 2012 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 COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
6 #define COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
7
8 #include <string>
9
10 #include "url/gurl.h"
11
12 namespace content {
13 class DevToolsExternalAgentProxyDelegate;
14 }
15
16 namespace devtools_http_handler {
17
18 class DevToolsHttpHandlerDelegate {
19 public:
20 virtual ~DevToolsHttpHandlerDelegate() {}
21
22 // Should return discovery page HTML that should list available tabs
23 // and provide attach links.
24 virtual std::string GetDiscoveryPageHTML() = 0;
25
26 // Returns frontend resource data by |path|. Only used if
27 // |BundlesFrontendResources| returns |true|.
28 virtual std::string GetFrontendResource(const std::string& path) = 0;
29 };
30
31 } // namespace devtools_http_handler
32
33 #endif // COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698