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

Side by Side Diff: content/browser/devtools/forwarding_agent_host.h

Issue 2678783005: DevTools: return remote debugging targets sorted by last active time (as it was long ago). (Closed)
Patch Set: Created 3 years, 10 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_ 5 #ifndef CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_
6 #define CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_ 6 #define CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 27 matching lines...) Expand all
38 38
39 // DevToolsAgentHost implementation 39 // DevToolsAgentHost implementation
40 std::string GetType() override; 40 std::string GetType() override;
41 std::string GetTitle() override; 41 std::string GetTitle() override;
42 GURL GetURL() override; 42 GURL GetURL() override;
43 GURL GetFaviconURL() override; 43 GURL GetFaviconURL() override;
44 std::string GetFrontendURL() override; 44 std::string GetFrontendURL() override;
45 bool Activate() override; 45 bool Activate() override;
46 void Reload() override; 46 void Reload() override;
47 bool Close() override; 47 bool Close() override;
48 base::TimeTicks GetLastActivityTime() override;
48 49
49 std::unique_ptr<DevToolsExternalAgentProxyDelegate> delegate_; 50 std::unique_ptr<DevToolsExternalAgentProxyDelegate> delegate_;
50 std::string type_; 51 std::string type_;
51 std::string title_; 52 std::string title_;
52 GURL url_; 53 GURL url_;
53 }; 54 };
54 55
55 } // namespace content 56 } // namespace content
56 57
57 #endif // CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_ 58 #endif // CONTENT_BROWSER_DEVTOOLS_FORWARDING_AGENT_HOST_H_
OLDNEW
« no previous file with comments | « content/browser/devtools/devtools_manager_unittest.cc ('k') | content/browser/devtools/forwarding_agent_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698