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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 10316020: Remove WebContentsImpl::OnDidRedirectProvisionalLoad. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Also fix unit test that referenced ViewHostMsg_DidRedirectProvisionalLoad Created 8 years, 7 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_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 const WebKit::WebURL& from, 495 const WebKit::WebURL& from,
496 const WebKit::WebURL& to, 496 const WebKit::WebURL& to,
497 double interval, 497 double interval,
498 double fire_time); 498 double fire_time);
499 virtual void didCancelClientRedirect(WebKit::WebFrame* frame); 499 virtual void didCancelClientRedirect(WebKit::WebFrame* frame);
500 virtual void didCompleteClientRedirect(WebKit::WebFrame* frame, 500 virtual void didCompleteClientRedirect(WebKit::WebFrame* frame,
501 const WebKit::WebURL& from); 501 const WebKit::WebURL& from);
502 virtual void didCreateDataSource(WebKit::WebFrame* frame, 502 virtual void didCreateDataSource(WebKit::WebFrame* frame,
503 WebKit::WebDataSource* datasource); 503 WebKit::WebDataSource* datasource);
504 virtual void didStartProvisionalLoad(WebKit::WebFrame* frame); 504 virtual void didStartProvisionalLoad(WebKit::WebFrame* frame);
505 virtual void didReceiveServerRedirectForProvisionalLoad(
506 WebKit::WebFrame* frame);
507 virtual void didFailProvisionalLoad(WebKit::WebFrame* frame, 505 virtual void didFailProvisionalLoad(WebKit::WebFrame* frame,
508 const WebKit::WebURLError& error); 506 const WebKit::WebURLError& error);
509 virtual void didReceiveDocumentData(WebKit::WebFrame* frame, 507 virtual void didReceiveDocumentData(WebKit::WebFrame* frame,
510 const char* data, size_t length, 508 const char* data, size_t length,
511 bool& prevent_default); 509 bool& prevent_default);
512 virtual void didCommitProvisionalLoad(WebKit::WebFrame* frame, 510 virtual void didCommitProvisionalLoad(WebKit::WebFrame* frame,
513 bool is_new_navigation); 511 bool is_new_navigation);
514 virtual void didClearWindowObject(WebKit::WebFrame* frame); 512 virtual void didClearWindowObject(WebKit::WebFrame* frame);
515 virtual void didCreateDocumentElement(WebKit::WebFrame* frame); 513 virtual void didCreateDocumentElement(WebKit::WebFrame* frame);
516 virtual void didReceiveTitle(WebKit::WebFrame* frame, 514 virtual void didReceiveTitle(WebKit::WebFrame* frame,
(...skipping 826 matching lines...) Expand 10 before | Expand all | Expand 10 after
1343 // bunch of stuff, you should probably create a helper class and put your 1341 // bunch of stuff, you should probably create a helper class and put your
1344 // data and methods on that to avoid bloating RenderView more. You can 1342 // data and methods on that to avoid bloating RenderView more. You can
1345 // use the Observer interface to filter IPC messages and receive frame change 1343 // use the Observer interface to filter IPC messages and receive frame change
1346 // notifications. 1344 // notifications.
1347 // --------------------------------------------------------------------------- 1345 // ---------------------------------------------------------------------------
1348 1346
1349 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1347 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1350 }; 1348 };
1351 1349
1352 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1350 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698