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

Side by Side Diff: content/public/browser/devtools_http_handler_delegate.h

Issue 8554008: Add content API for DevTools HTTP handler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed unnecessary comment from the public interface Created 9 years 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 | Annotate | Revision Log
« no previous file with comments | « content/public/browser/devtools_http_handler.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 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 CONTENT_PUBLIC_BROWSER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
6 #define CONTENT_PUBLIC_BROWSER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
7 #pragma once
8
9 #include <string>
10 #include <vector>
11
12 class TabContents;
13
14 namespace net {
15 class URLRequestContext;
16 }
17
18 namespace content {
19
20 class DevToolsHttpHandlerDelegate {
21 public:
22 typedef std::vector<TabContents*> InspectableTabs;
23 virtual ~DevToolsHttpHandlerDelegate() {}
24
25 // Should return the list of inspectable tabs. Called on the UI thread.
26 virtual InspectableTabs GetInspectableTabs() = 0;
27
28 // Should return discovery page HTML that should list available tabs
29 // and provide attach links. Called on the IO thread.
30 virtual std::string GetDiscoveryPageHTML() = 0;
31
32 // Should return URL request context for issuing requests against devtools
33 // webui or NULL if no context is available. Called on the IO thread.
34 virtual net::URLRequestContext* GetURLRequestContext() = 0;
35 };
36
37 } // namespace content
38
39 #endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
OLDNEW
« no previous file with comments | « content/public/browser/devtools_http_handler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698