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

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: rebase] Created 8 years, 6 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 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 const WebKit::WebURL& from, 543 const WebKit::WebURL& from,
544 const WebKit::WebURL& to, 544 const WebKit::WebURL& to,
545 double interval, 545 double interval,
546 double fire_time); 546 double fire_time);
547 virtual void didCancelClientRedirect(WebKit::WebFrame* frame); 547 virtual void didCancelClientRedirect(WebKit::WebFrame* frame);
548 virtual void didCompleteClientRedirect(WebKit::WebFrame* frame, 548 virtual void didCompleteClientRedirect(WebKit::WebFrame* frame,
549 const WebKit::WebURL& from); 549 const WebKit::WebURL& from);
550 virtual void didCreateDataSource(WebKit::WebFrame* frame, 550 virtual void didCreateDataSource(WebKit::WebFrame* frame,
551 WebKit::WebDataSource* datasource); 551 WebKit::WebDataSource* datasource);
552 virtual void didStartProvisionalLoad(WebKit::WebFrame* frame); 552 virtual void didStartProvisionalLoad(WebKit::WebFrame* frame);
553 virtual void didReceiveServerRedirectForProvisionalLoad(
554 WebKit::WebFrame* frame);
555 virtual void didFailProvisionalLoad(WebKit::WebFrame* frame, 553 virtual void didFailProvisionalLoad(WebKit::WebFrame* frame,
556 const WebKit::WebURLError& error); 554 const WebKit::WebURLError& error);
557 virtual void didReceiveDocumentData(WebKit::WebFrame* frame, 555 virtual void didReceiveDocumentData(WebKit::WebFrame* frame,
558 const char* data, size_t length, 556 const char* data, size_t length,
559 bool& prevent_default); 557 bool& prevent_default);
560 virtual void didCommitProvisionalLoad(WebKit::WebFrame* frame, 558 virtual void didCommitProvisionalLoad(WebKit::WebFrame* frame,
561 bool is_new_navigation); 559 bool is_new_navigation);
562 virtual void didClearWindowObject(WebKit::WebFrame* frame); 560 virtual void didClearWindowObject(WebKit::WebFrame* frame);
563 virtual void didCreateDocumentElement(WebKit::WebFrame* frame); 561 virtual void didCreateDocumentElement(WebKit::WebFrame* frame);
564 virtual void didReceiveTitle(WebKit::WebFrame* frame, 562 virtual void didReceiveTitle(WebKit::WebFrame* frame,
(...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after
1426 // bunch of stuff, you should probably create a helper class and put your 1424 // bunch of stuff, you should probably create a helper class and put your
1427 // data and methods on that to avoid bloating RenderView more. You can 1425 // data and methods on that to avoid bloating RenderView more. You can
1428 // use the Observer interface to filter IPC messages and receive frame change 1426 // use the Observer interface to filter IPC messages and receive frame change
1429 // notifications. 1427 // notifications.
1430 // --------------------------------------------------------------------------- 1428 // ---------------------------------------------------------------------------
1431 1429
1432 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1430 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1433 }; 1431 };
1434 1432
1435 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1433 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698