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

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

Issue 988003002: DevTools: pick sw targets to attach to on the backend side. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaselined Created 5 years, 9 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 (c) 2012 The Chromium Authors. All rights reserved. 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 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_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ 5 #ifndef CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_
6 #define CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ 6 #define CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 void FrameDeleted(RenderFrameHost* rfh) override; 93 void FrameDeleted(RenderFrameHost* rfh) override;
94 void RenderProcessGone(base::TerminationStatus status) override; 94 void RenderProcessGone(base::TerminationStatus status) override;
95 bool OnMessageReceived(const IPC::Message& message, 95 bool OnMessageReceived(const IPC::Message& message,
96 RenderFrameHost* render_frame_host) override; 96 RenderFrameHost* render_frame_host) override;
97 bool OnMessageReceived(const IPC::Message& message) override; 97 bool OnMessageReceived(const IPC::Message& message) override;
98 void DidAttachInterstitialPage() override; 98 void DidAttachInterstitialPage() override;
99 void DidDetachInterstitialPage() override; 99 void DidDetachInterstitialPage() override;
100 void TitleWasSet(NavigationEntry* entry, bool explicit_set) override; 100 void TitleWasSet(NavigationEntry* entry, bool explicit_set) override;
101 void NavigationEntryCommitted( 101 void NavigationEntryCommitted(
102 const LoadCommittedDetails& load_details) override; 102 const LoadCommittedDetails& load_details) override;
103 void DidCommitProvisionalLoadForFrame(
104 RenderFrameHost* render_frame_host,
105 const GURL& url,
106 ui::PageTransition transition_type) override;
103 107
104 // NotificationObserver overrides: 108 // NotificationObserver overrides:
105 void Observe(int type, 109 void Observe(int type,
106 const NotificationSource& source, 110 const NotificationSource& source,
107 const NotificationDetails& details) override; 111 const NotificationDetails& details) override;
108 112
109 void DisconnectRenderFrameHost(); 113 void DisconnectRenderFrameHost();
110 void ConnectRenderFrameHost(RenderFrameHost* rvh); 114 void ConnectRenderFrameHost(RenderFrameHost* rvh);
111 void ReattachToRenderFrameHost(RenderFrameHost* rvh); 115 void ReattachToRenderFrameHost(RenderFrameHost* rvh);
112 116
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 #endif 148 #endif
145 NotificationRegistrar registrar_; 149 NotificationRegistrar registrar_;
146 bool reattaching_; 150 bool reattaching_;
147 151
148 DISALLOW_COPY_AND_ASSIGN(RenderFrameDevToolsAgentHost); 152 DISALLOW_COPY_AND_ASSIGN(RenderFrameDevToolsAgentHost);
149 }; 153 };
150 154
151 } // namespace content 155 } // namespace content
152 156
153 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ 157 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698