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 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
589 virtual void didCancelClientRedirect(WebKit::WebFrame* frame); | 589 virtual void didCancelClientRedirect(WebKit::WebFrame* frame); |
590 virtual void didCompleteClientRedirect(WebKit::WebFrame* frame, | 590 virtual void didCompleteClientRedirect(WebKit::WebFrame* frame, |
591 const WebKit::WebURL& from); | 591 const WebKit::WebURL& from); |
592 virtual void didCreateDataSource(WebKit::WebFrame* frame, | 592 virtual void didCreateDataSource(WebKit::WebFrame* frame, |
593 WebKit::WebDataSource* datasource); | 593 WebKit::WebDataSource* datasource); |
594 virtual void didStartProvisionalLoad(WebKit::WebFrame* frame); | 594 virtual void didStartProvisionalLoad(WebKit::WebFrame* frame); |
595 virtual void didReceiveServerRedirectForProvisionalLoad( | 595 virtual void didReceiveServerRedirectForProvisionalLoad( |
596 WebKit::WebFrame* frame); | 596 WebKit::WebFrame* frame); |
597 virtual void didFailProvisionalLoad(WebKit::WebFrame* frame, | 597 virtual void didFailProvisionalLoad(WebKit::WebFrame* frame, |
598 const WebKit::WebURLError& error); | 598 const WebKit::WebURLError& error); |
599 virtual void didReceiveDocumentData(WebKit::WebFrame* frame, | |
600 const char* data, size_t length, | |
601 bool& prevent_default); | |
602 virtual void didCommitProvisionalLoad(WebKit::WebFrame* frame, | 599 virtual void didCommitProvisionalLoad(WebKit::WebFrame* frame, |
603 bool is_new_navigation); | 600 bool is_new_navigation); |
604 virtual void didClearWindowObject(WebKit::WebFrame* frame); | 601 virtual void didClearWindowObject(WebKit::WebFrame* frame); |
605 virtual void didCreateDocumentElement(WebKit::WebFrame* frame); | 602 virtual void didCreateDocumentElement(WebKit::WebFrame* frame); |
606 virtual void didReceiveTitle(WebKit::WebFrame* frame, | 603 virtual void didReceiveTitle(WebKit::WebFrame* frame, |
607 const WebKit::WebString& title, | 604 const WebKit::WebString& title, |
608 WebKit::WebTextDirection direction); | 605 WebKit::WebTextDirection direction); |
609 virtual void didChangeIcon(WebKit::WebFrame*, | 606 virtual void didChangeIcon(WebKit::WebFrame*, |
610 WebKit::WebIconURL::Type); | 607 WebKit::WebIconURL::Type); |
611 virtual void didFinishDocumentLoad(WebKit::WebFrame* frame); | 608 virtual void didFinishDocumentLoad(WebKit::WebFrame* frame); |
(...skipping 961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1573 // use the Observer interface to filter IPC messages and receive frame change | 1570 // use the Observer interface to filter IPC messages and receive frame change |
1574 // notifications. | 1571 // notifications. |
1575 // --------------------------------------------------------------------------- | 1572 // --------------------------------------------------------------------------- |
1576 | 1573 |
1577 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1574 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1578 }; | 1575 }; |
1579 | 1576 |
1580 } // namespace content | 1577 } // namespace content |
1581 | 1578 |
1582 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1579 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |