| OLD | NEW |
| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 void FrameDeleted(RenderFrameHost* rfh) override; | 86 void FrameDeleted(RenderFrameHost* rfh) override; |
| 87 void RenderProcessGone(base::TerminationStatus status) override; | 87 void RenderProcessGone(base::TerminationStatus status) override; |
| 88 bool OnMessageReceived(const IPC::Message& message, | 88 bool OnMessageReceived(const IPC::Message& message, |
| 89 RenderFrameHost* render_frame_host) override; | 89 RenderFrameHost* render_frame_host) override; |
| 90 bool OnMessageReceived(const IPC::Message& message) override; | 90 bool OnMessageReceived(const IPC::Message& message) override; |
| 91 void DidAttachInterstitialPage() override; | 91 void DidAttachInterstitialPage() override; |
| 92 void DidDetachInterstitialPage() override; | 92 void DidDetachInterstitialPage() override; |
| 93 void TitleWasSet(NavigationEntry* entry, bool explicit_set) override; | 93 void TitleWasSet(NavigationEntry* entry, bool explicit_set) override; |
| 94 void NavigationEntryCommitted( | 94 void NavigationEntryCommitted( |
| 95 const LoadCommittedDetails& load_details) override; | 95 const LoadCommittedDetails& load_details) override; |
| 96 void DidCommitProvisionalLoadForFrame( |
| 97 RenderFrameHost* render_frame_host, |
| 98 const GURL& url, |
| 99 ui::PageTransition transition_type) override; |
| 96 | 100 |
| 97 // NotificationObserver overrides: | 101 // NotificationObserver overrides: |
| 98 void Observe(int type, | 102 void Observe(int type, |
| 99 const NotificationSource& source, | 103 const NotificationSource& source, |
| 100 const NotificationDetails& details) override; | 104 const NotificationDetails& details) override; |
| 101 | 105 |
| 102 void DisconnectRenderFrameHost(); | 106 void DisconnectRenderFrameHost(); |
| 103 void ConnectRenderFrameHost(RenderFrameHost* rvh); | 107 void ConnectRenderFrameHost(RenderFrameHost* rvh); |
| 104 void ReattachToRenderFrameHost(RenderFrameHost* rvh); | 108 void ReattachToRenderFrameHost(RenderFrameHost* rvh); |
| 105 | 109 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 135 #endif | 139 #endif |
| 136 NotificationRegistrar registrar_; | 140 NotificationRegistrar registrar_; |
| 137 bool reattaching_; | 141 bool reattaching_; |
| 138 | 142 |
| 139 DISALLOW_COPY_AND_ASSIGN(RenderFrameDevToolsAgentHost); | 143 DISALLOW_COPY_AND_ASSIGN(RenderFrameDevToolsAgentHost); |
| 140 }; | 144 }; |
| 141 | 145 |
| 142 } // namespace content | 146 } // namespace content |
| 143 | 147 |
| 144 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ | 148 #endif // CONTENT_BROWSER_DEVTOOLS_RENDER_FRAME_DEVTOOLS_AGENT_HOST_H_ |
| OLD | NEW |