| 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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 WebKit::WebFrame* frame, const WebKit::WebURL& url, | 513 WebKit::WebFrame* frame, const WebKit::WebURL& url, |
| 514 const WebKit::WebString& name, unsigned long long documentId); | 514 const WebKit::WebString& name, unsigned long long documentId); |
| 515 virtual WebKit::WebMediaPlayer* createMediaPlayer( | 515 virtual WebKit::WebMediaPlayer* createMediaPlayer( |
| 516 WebKit::WebFrame* frame, | 516 WebKit::WebFrame* frame, |
| 517 const WebKit::WebURL& url, | 517 const WebKit::WebURL& url, |
| 518 WebKit::WebMediaPlayerClient* client); | 518 WebKit::WebMediaPlayerClient* client); |
| 519 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( | 519 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( |
| 520 WebKit::WebFrame* frame, | 520 WebKit::WebFrame* frame, |
| 521 WebKit::WebApplicationCacheHostClient* client); | 521 WebKit::WebApplicationCacheHostClient* client); |
| 522 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); | 522 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); |
| 523 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); |
| 523 virtual void didCreateFrame(WebKit::WebFrame* parent, | 524 virtual void didCreateFrame(WebKit::WebFrame* parent, |
| 524 WebKit::WebFrame* child); | 525 WebKit::WebFrame* child); |
| 525 virtual void didDisownOpener(WebKit::WebFrame* frame); | 526 virtual void didDisownOpener(WebKit::WebFrame* frame); |
| 526 virtual void frameDetached(WebKit::WebFrame* frame); | 527 virtual void frameDetached(WebKit::WebFrame* frame); |
| 527 virtual void willClose(WebKit::WebFrame* frame); | 528 virtual void willClose(WebKit::WebFrame* frame); |
| 528 virtual void didChangeName(WebKit::WebFrame* frame, | 529 virtual void didChangeName(WebKit::WebFrame* frame, |
| 529 const WebKit::WebString& name); | 530 const WebKit::WebString& name); |
| 530 virtual void loadURLExternally(WebKit::WebFrame* frame, | 531 virtual void loadURLExternally(WebKit::WebFrame* frame, |
| 531 const WebKit::WebURLRequest& request, | 532 const WebKit::WebURLRequest& request, |
| 532 WebKit::WebNavigationPolicy policy); | 533 WebKit::WebNavigationPolicy policy); |
| (...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1579 // use the Observer interface to filter IPC messages and receive frame change | 1580 // use the Observer interface to filter IPC messages and receive frame change |
| 1580 // notifications. | 1581 // notifications. |
| 1581 // --------------------------------------------------------------------------- | 1582 // --------------------------------------------------------------------------- |
| 1582 | 1583 |
| 1583 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1584 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1584 }; | 1585 }; |
| 1585 | 1586 |
| 1586 } // namespace content | 1587 } // namespace content |
| 1587 | 1588 |
| 1588 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1589 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |