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