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_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 | 322 |
323 // RenderFrameHostDelegate --------------------------------------------------- | 323 // RenderFrameHostDelegate --------------------------------------------------- |
324 virtual bool OnMessageReceived(RenderFrameHost* render_frame_host, | 324 virtual bool OnMessageReceived(RenderFrameHost* render_frame_host, |
325 const IPC::Message& message) OVERRIDE; | 325 const IPC::Message& message) OVERRIDE; |
326 virtual const GURL& GetMainFrameLastCommittedURL() const OVERRIDE; | 326 virtual const GURL& GetMainFrameLastCommittedURL() const OVERRIDE; |
327 virtual void RenderFrameCreated(RenderFrameHost* render_frame_host) OVERRIDE; | 327 virtual void RenderFrameCreated(RenderFrameHost* render_frame_host) OVERRIDE; |
328 virtual void RenderFrameDeleted(RenderFrameHost* render_frame_host) OVERRIDE; | 328 virtual void RenderFrameDeleted(RenderFrameHost* render_frame_host) OVERRIDE; |
329 virtual void DidStartLoading(RenderFrameHost* render_frame_host, | 329 virtual void DidStartLoading(RenderFrameHost* render_frame_host, |
330 bool to_different_document) OVERRIDE; | 330 bool to_different_document) OVERRIDE; |
331 virtual void SwappedOut(RenderFrameHost* render_frame_host) OVERRIDE; | 331 virtual void SwappedOut(RenderFrameHost* render_frame_host) OVERRIDE; |
332 virtual void DidDeferAfterResponseStarted() OVERRIDE; | 332 virtual void DidDeferAfterResponseStarted( |
| 333 const GURL& transition_url) OVERRIDE; |
333 virtual bool WillHandleDeferAfterResponseStarted() OVERRIDE; | 334 virtual bool WillHandleDeferAfterResponseStarted() OVERRIDE; |
334 virtual void WorkerCrashed(RenderFrameHost* render_frame_host) OVERRIDE; | 335 virtual void WorkerCrashed(RenderFrameHost* render_frame_host) OVERRIDE; |
335 virtual void ShowContextMenu(RenderFrameHost* render_frame_host, | 336 virtual void ShowContextMenu(RenderFrameHost* render_frame_host, |
336 const ContextMenuParams& params) OVERRIDE; | 337 const ContextMenuParams& params) OVERRIDE; |
337 virtual void RunJavaScriptMessage(RenderFrameHost* render_frame_host, | 338 virtual void RunJavaScriptMessage(RenderFrameHost* render_frame_host, |
338 const base::string16& message, | 339 const base::string16& message, |
339 const base::string16& default_prompt, | 340 const base::string16& default_prompt, |
340 const GURL& frame_url, | 341 const GURL& frame_url, |
341 JavaScriptMessageType type, | 342 JavaScriptMessageType type, |
342 IPC::Message* reply_msg) OVERRIDE; | 343 IPC::Message* reply_msg) OVERRIDE; |
(...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1150 | 1151 |
1151 scoped_ptr<ScreenOrientationDispatcherHost> | 1152 scoped_ptr<ScreenOrientationDispatcherHost> |
1152 screen_orientation_dispatcher_host_; | 1153 screen_orientation_dispatcher_host_; |
1153 | 1154 |
1154 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1155 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1155 }; | 1156 }; |
1156 | 1157 |
1157 } // namespace content | 1158 } // namespace content |
1158 | 1159 |
1159 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1160 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |