| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 virtual void didFailProvisionalLoad(WebKit::WebFrame* frame, | 482 virtual void didFailProvisionalLoad(WebKit::WebFrame* frame, |
| 483 const WebKit::WebURLError& error); | 483 const WebKit::WebURLError& error); |
| 484 virtual void didReceiveDocumentData(WebKit::WebFrame* frame, | 484 virtual void didReceiveDocumentData(WebKit::WebFrame* frame, |
| 485 const char* data, size_t length, | 485 const char* data, size_t length, |
| 486 bool& prevent_default); | 486 bool& prevent_default); |
| 487 virtual void didCommitProvisionalLoad(WebKit::WebFrame* frame, | 487 virtual void didCommitProvisionalLoad(WebKit::WebFrame* frame, |
| 488 bool is_new_navigation); | 488 bool is_new_navigation); |
| 489 virtual void didClearWindowObject(WebKit::WebFrame* frame); | 489 virtual void didClearWindowObject(WebKit::WebFrame* frame); |
| 490 virtual void didCreateDocumentElement(WebKit::WebFrame* frame); | 490 virtual void didCreateDocumentElement(WebKit::WebFrame* frame); |
| 491 virtual void didReceiveTitle(WebKit::WebFrame* frame, | 491 virtual void didReceiveTitle(WebKit::WebFrame* frame, |
| 492 const WebKit::WebString& title); | 492 const WebKit::WebString& title, |
| 493 WebKit::WebTextDirection direction); |
| 493 virtual void didChangeIcons(WebKit::WebFrame*); | 494 virtual void didChangeIcons(WebKit::WebFrame*); |
| 494 virtual void didFinishDocumentLoad(WebKit::WebFrame* frame); | 495 virtual void didFinishDocumentLoad(WebKit::WebFrame* frame); |
| 495 virtual void didHandleOnloadEvents(WebKit::WebFrame* frame); | 496 virtual void didHandleOnloadEvents(WebKit::WebFrame* frame); |
| 496 virtual void didFailLoad(WebKit::WebFrame* frame, | 497 virtual void didFailLoad(WebKit::WebFrame* frame, |
| 497 const WebKit::WebURLError& error); | 498 const WebKit::WebURLError& error); |
| 498 virtual void didFinishLoad(WebKit::WebFrame* frame); | 499 virtual void didFinishLoad(WebKit::WebFrame* frame); |
| 499 virtual void didNavigateWithinPage(WebKit::WebFrame* frame, | 500 virtual void didNavigateWithinPage(WebKit::WebFrame* frame, |
| 500 bool is_new_navigation); | 501 bool is_new_navigation); |
| 501 virtual void didUpdateCurrentHistoryItem(WebKit::WebFrame* frame); | 502 virtual void didUpdateCurrentHistoryItem(WebKit::WebFrame* frame); |
| 502 virtual void assignIdentifierToRequest(WebKit::WebFrame* frame, | 503 virtual void assignIdentifierToRequest(WebKit::WebFrame* frame, |
| (...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1162 // bunch of stuff, you should probably create a helper class and put your | 1163 // bunch of stuff, you should probably create a helper class and put your |
| 1163 // data and methods on that to avoid bloating RenderView more. You can use | 1164 // data and methods on that to avoid bloating RenderView more. You can use |
| 1164 // the Observer interface to filter IPC messages and receive frame change | 1165 // the Observer interface to filter IPC messages and receive frame change |
| 1165 // notifications. | 1166 // notifications. |
| 1166 // --------------------------------------------------------------------------- | 1167 // --------------------------------------------------------------------------- |
| 1167 | 1168 |
| 1168 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1169 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1169 }; | 1170 }; |
| 1170 | 1171 |
| 1171 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ | 1172 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |