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

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 435833002: Navigation transitions: Plumb data from the outgoing renderer to the incoming renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Testfix Created 6 years, 4 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 | Annotate | Revision Log
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_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
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 821 matching lines...) Expand 10 before | Expand all | Expand 10 after
1185 // The accessibility mode for all frames. This is queried when each frame 1184 // The accessibility mode for all frames. This is queried when each frame
1186 // is created, and broadcast to all frames when it changes. 1185 // is created, and broadcast to all frames when it changes.
1187 AccessibilityMode accessibility_mode_; 1186 AccessibilityMode accessibility_mode_;
1188 1187
1189 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1188 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1190 }; 1189 };
1191 1190
1192 } // namespace content 1191 } // namespace content
1193 1192
1194 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1193 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/transition_request_manager.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698