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

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: Don't break unittest 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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 const WebKit::WebURL& from, 532 const WebKit::WebURL& from,
533 const WebKit::WebURL& to, 533 const WebKit::WebURL& to,
534 double interval, 534 double interval,
535 double fire_time); 535 double fire_time);
536 virtual void didCancelClientRedirect(WebKit::WebFrame* frame); 536 virtual void didCancelClientRedirect(WebKit::WebFrame* frame);
537 virtual void didCompleteClientRedirect(WebKit::WebFrame* frame, 537 virtual void didCompleteClientRedirect(WebKit::WebFrame* frame,
538 const WebKit::WebURL& from); 538 const WebKit::WebURL& from);
539 virtual void didCreateDataSource(WebKit::WebFrame* frame, 539 virtual void didCreateDataSource(WebKit::WebFrame* frame,
540 WebKit::WebDataSource* datasource); 540 WebKit::WebDataSource* datasource);
541 virtual void didStartProvisionalLoad(WebKit::WebFrame* frame); 541 virtual void didStartProvisionalLoad(WebKit::WebFrame* frame);
542 virtual void didReceiveServerRedirectForProvisionalLoad(
543 WebKit::WebFrame* frame);
544 virtual void didFailProvisionalLoad(WebKit::WebFrame* frame, 542 virtual void didFailProvisionalLoad(WebKit::WebFrame* frame,
545 const WebKit::WebURLError& error); 543 const WebKit::WebURLError& error);
546 virtual void didReceiveDocumentData(WebKit::WebFrame* frame, 544 virtual void didReceiveDocumentData(WebKit::WebFrame* frame,
547 const char* data, size_t length, 545 const char* data, size_t length,
548 bool& prevent_default); 546 bool& prevent_default);
549 virtual void didCommitProvisionalLoad(WebKit::WebFrame* frame, 547 virtual void didCommitProvisionalLoad(WebKit::WebFrame* frame,
550 bool is_new_navigation); 548 bool is_new_navigation);
551 virtual void didClearWindowObject(WebKit::WebFrame* frame); 549 virtual void didClearWindowObject(WebKit::WebFrame* frame);
552 virtual void didCreateDocumentElement(WebKit::WebFrame* frame); 550 virtual void didCreateDocumentElement(WebKit::WebFrame* frame);
553 virtual void didReceiveTitle(WebKit::WebFrame* frame, 551 virtual void didReceiveTitle(WebKit::WebFrame* frame,
(...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after
1411 // bunch of stuff, you should probably create a helper class and put your 1409 // bunch of stuff, you should probably create a helper class and put your
1412 // data and methods on that to avoid bloating RenderView more. You can 1410 // data and methods on that to avoid bloating RenderView more. You can
1413 // use the Observer interface to filter IPC messages and receive frame change 1411 // use the Observer interface to filter IPC messages and receive frame change
1414 // notifications. 1412 // notifications.
1415 // --------------------------------------------------------------------------- 1413 // ---------------------------------------------------------------------------
1416 1414
1417 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1415 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1418 }; 1416 };
1419 1417
1420 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1418 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698