| 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 // RenderFrameHostDelegate --------------------------------------------------- | 342 // RenderFrameHostDelegate --------------------------------------------------- |
| 343 virtual bool OnMessageReceived(RenderFrameHost* render_frame_host, | 343 virtual bool OnMessageReceived(RenderFrameHost* render_frame_host, |
| 344 const IPC::Message& message) OVERRIDE; | 344 const IPC::Message& message) OVERRIDE; |
| 345 virtual const GURL& GetMainFrameLastCommittedURL() const OVERRIDE; | 345 virtual const GURL& GetMainFrameLastCommittedURL() const OVERRIDE; |
| 346 virtual void RenderFrameCreated(RenderFrameHost* render_frame_host) OVERRIDE; | 346 virtual void RenderFrameCreated(RenderFrameHost* render_frame_host) OVERRIDE; |
| 347 virtual void RenderFrameDeleted(RenderFrameHost* render_frame_host) OVERRIDE; | 347 virtual void RenderFrameDeleted(RenderFrameHost* render_frame_host) OVERRIDE; |
| 348 virtual void DidStartLoading(RenderFrameHost* render_frame_host, | 348 virtual void DidStartLoading(RenderFrameHost* render_frame_host, |
| 349 bool to_different_document) OVERRIDE; | 349 bool to_different_document) OVERRIDE; |
| 350 virtual void SwappedOut(RenderFrameHost* render_frame_host) OVERRIDE; | 350 virtual void SwappedOut(RenderFrameHost* render_frame_host) OVERRIDE; |
| 351 virtual void DidDeferAfterResponseStarted( | 351 virtual void DidDeferAfterResponseStarted( |
| 352 const scoped_refptr<net::HttpResponseHeaders>& headers, | 352 const TransitionLayerData& transition_data) OVERRIDE; |
| 353 const GURL& url) OVERRIDE; | |
| 354 virtual bool WillHandleDeferAfterResponseStarted() OVERRIDE; | 353 virtual bool WillHandleDeferAfterResponseStarted() OVERRIDE; |
| 355 virtual void WorkerCrashed(RenderFrameHost* render_frame_host) OVERRIDE; | 354 virtual void WorkerCrashed(RenderFrameHost* render_frame_host) OVERRIDE; |
| 356 virtual void ShowContextMenu(RenderFrameHost* render_frame_host, | 355 virtual void ShowContextMenu(RenderFrameHost* render_frame_host, |
| 357 const ContextMenuParams& params) OVERRIDE; | 356 const ContextMenuParams& params) OVERRIDE; |
| 358 virtual void RunJavaScriptMessage(RenderFrameHost* render_frame_host, | 357 virtual void RunJavaScriptMessage(RenderFrameHost* render_frame_host, |
| 359 const base::string16& message, | 358 const base::string16& message, |
| 360 const base::string16& default_prompt, | 359 const base::string16& default_prompt, |
| 361 const GURL& frame_url, | 360 const GURL& frame_url, |
| 362 JavaScriptMessageType type, | 361 JavaScriptMessageType type, |
| 363 IPC::Message* reply_msg) OVERRIDE; | 362 IPC::Message* reply_msg) OVERRIDE; |
| (...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1186 // The accessibility mode for all frames. This is queried when each frame | 1185 // The accessibility mode for all frames. This is queried when each frame |
| 1187 // is created, and broadcast to all frames when it changes. | 1186 // is created, and broadcast to all frames when it changes. |
| 1188 AccessibilityMode accessibility_mode_; | 1187 AccessibilityMode accessibility_mode_; |
| 1189 | 1188 |
| 1190 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1189 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1191 }; | 1190 }; |
| 1192 | 1191 |
| 1193 } // namespace content | 1192 } // namespace content |
| 1194 | 1193 |
| 1195 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1194 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |