| 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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 const WebKit::WebURL& from, | 496 const WebKit::WebURL& from, |
| 497 const WebKit::WebURL& to, | 497 const WebKit::WebURL& to, |
| 498 double interval, | 498 double interval, |
| 499 double fire_time); | 499 double fire_time); |
| 500 virtual void didCancelClientRedirect(WebKit::WebFrame* frame); | 500 virtual void didCancelClientRedirect(WebKit::WebFrame* frame); |
| 501 virtual void didCompleteClientRedirect(WebKit::WebFrame* frame, | 501 virtual void didCompleteClientRedirect(WebKit::WebFrame* frame, |
| 502 const WebKit::WebURL& from); | 502 const WebKit::WebURL& from); |
| 503 virtual void didCreateDataSource(WebKit::WebFrame* frame, | 503 virtual void didCreateDataSource(WebKit::WebFrame* frame, |
| 504 WebKit::WebDataSource* datasource); | 504 WebKit::WebDataSource* datasource); |
| 505 virtual void didStartProvisionalLoad(WebKit::WebFrame* frame); | 505 virtual void didStartProvisionalLoad(WebKit::WebFrame* frame); |
| 506 virtual void didReceiveServerRedirectForProvisionalLoad( | |
| 507 WebKit::WebFrame* frame); | |
| 508 virtual void didFailProvisionalLoad(WebKit::WebFrame* frame, | 506 virtual void didFailProvisionalLoad(WebKit::WebFrame* frame, |
| 509 const WebKit::WebURLError& error); | 507 const WebKit::WebURLError& error); |
| 510 virtual void didReceiveDocumentData(WebKit::WebFrame* frame, | 508 virtual void didReceiveDocumentData(WebKit::WebFrame* frame, |
| 511 const char* data, size_t length, | 509 const char* data, size_t length, |
| 512 bool& prevent_default); | 510 bool& prevent_default); |
| 513 virtual void didCommitProvisionalLoad(WebKit::WebFrame* frame, | 511 virtual void didCommitProvisionalLoad(WebKit::WebFrame* frame, |
| 514 bool is_new_navigation); | 512 bool is_new_navigation); |
| 515 virtual void didClearWindowObject(WebKit::WebFrame* frame); | 513 virtual void didClearWindowObject(WebKit::WebFrame* frame); |
| 516 virtual void didCreateDocumentElement(WebKit::WebFrame* frame); | 514 virtual void didCreateDocumentElement(WebKit::WebFrame* frame); |
| 517 virtual void didReceiveTitle(WebKit::WebFrame* frame, | 515 virtual void didReceiveTitle(WebKit::WebFrame* frame, |
| (...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1353 // bunch of stuff, you should probably create a helper class and put your | 1351 // bunch of stuff, you should probably create a helper class and put your |
| 1354 // data and methods on that to avoid bloating RenderView more. You can | 1352 // data and methods on that to avoid bloating RenderView more. You can |
| 1355 // use the Observer interface to filter IPC messages and receive frame change | 1353 // use the Observer interface to filter IPC messages and receive frame change |
| 1356 // notifications. | 1354 // notifications. |
| 1357 // --------------------------------------------------------------------------- | 1355 // --------------------------------------------------------------------------- |
| 1358 | 1356 |
| 1359 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1357 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1360 }; | 1358 }; |
| 1361 | 1359 |
| 1362 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1360 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |