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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 | 321 |
322 // RenderFrameHostDelegate --------------------------------------------------- | 322 // RenderFrameHostDelegate --------------------------------------------------- |
323 virtual bool OnMessageReceived(RenderFrameHost* render_frame_host, | 323 virtual bool OnMessageReceived(RenderFrameHost* render_frame_host, |
324 const IPC::Message& message) OVERRIDE; | 324 const IPC::Message& message) OVERRIDE; |
325 virtual const GURL& GetMainFrameLastCommittedURL() const OVERRIDE; | 325 virtual const GURL& GetMainFrameLastCommittedURL() const OVERRIDE; |
326 virtual void RenderFrameCreated(RenderFrameHost* render_frame_host) OVERRIDE; | 326 virtual void RenderFrameCreated(RenderFrameHost* render_frame_host) OVERRIDE; |
327 virtual void RenderFrameDeleted(RenderFrameHost* render_frame_host) OVERRIDE; | 327 virtual void RenderFrameDeleted(RenderFrameHost* render_frame_host) OVERRIDE; |
328 virtual void DidStartLoading(RenderFrameHost* render_frame_host, | 328 virtual void DidStartLoading(RenderFrameHost* render_frame_host, |
329 bool to_different_document) OVERRIDE; | 329 bool to_different_document) OVERRIDE; |
330 virtual void SwappedOut(RenderFrameHost* render_frame_host) OVERRIDE; | 330 virtual void SwappedOut(RenderFrameHost* render_frame_host) OVERRIDE; |
331 virtual void DidDeferAfterResponseStarted() OVERRIDE; | 331 virtual void DidDeferAfterResponseStarted( |
| 332 const TransitionLayerData& transition_layer_data) OVERRIDE; |
332 virtual bool WillHandleDeferAfterResponseStarted() OVERRIDE; | 333 virtual bool WillHandleDeferAfterResponseStarted() OVERRIDE; |
333 virtual void WorkerCrashed(RenderFrameHost* render_frame_host) OVERRIDE; | 334 virtual void WorkerCrashed(RenderFrameHost* render_frame_host) OVERRIDE; |
334 virtual void ShowContextMenu(RenderFrameHost* render_frame_host, | 335 virtual void ShowContextMenu(RenderFrameHost* render_frame_host, |
335 const ContextMenuParams& params) OVERRIDE; | 336 const ContextMenuParams& params) OVERRIDE; |
336 virtual void RunJavaScriptMessage(RenderFrameHost* render_frame_host, | 337 virtual void RunJavaScriptMessage(RenderFrameHost* render_frame_host, |
337 const base::string16& message, | 338 const base::string16& message, |
338 const base::string16& default_prompt, | 339 const base::string16& default_prompt, |
339 const GURL& frame_url, | 340 const GURL& frame_url, |
340 JavaScriptMessageType type, | 341 JavaScriptMessageType type, |
341 IPC::Message* reply_msg) OVERRIDE; | 342 IPC::Message* reply_msg) OVERRIDE; |
(...skipping 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1153 | 1154 |
1154 scoped_ptr<ScreenOrientationDispatcherHost> | 1155 scoped_ptr<ScreenOrientationDispatcherHost> |
1155 screen_orientation_dispatcher_host_; | 1156 screen_orientation_dispatcher_host_; |
1156 | 1157 |
1157 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1158 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1158 }; | 1159 }; |
1159 | 1160 |
1160 } // namespace content | 1161 } // namespace content |
1161 | 1162 |
1162 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1163 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |