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