| 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 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 virtual void didScrollWithKeyboard(const WebKit::WebSize& delta); | 533 virtual void didScrollWithKeyboard(const WebKit::WebSize& delta); |
| 534 #endif | 534 #endif |
| 535 | 535 |
| 536 // WebKit::WebFrameClient implementation ------------------------------------- | 536 // WebKit::WebFrameClient implementation ------------------------------------- |
| 537 | 537 |
| 538 virtual WebKit::WebMediaPlayer* createMediaPlayer( | 538 virtual WebKit::WebMediaPlayer* createMediaPlayer( |
| 539 WebKit::WebFrame* frame, | 539 WebKit::WebFrame* frame, |
| 540 const WebKit::WebURL& url, | 540 const WebKit::WebURL& url, |
| 541 WebKit::WebMediaPlayerClient* client); | 541 WebKit::WebMediaPlayerClient* client); |
| 542 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); | 542 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); |
| 543 virtual WebKit::WebServiceWorkerRegistry* serviceWorkerRegistry( |
| 544 WebKit::WebFrame* frame); |
| 543 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); | 545 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); |
| 544 virtual void didDisownOpener(WebKit::WebFrame* frame); | 546 virtual void didDisownOpener(WebKit::WebFrame* frame); |
| 545 virtual void frameDetached(WebKit::WebFrame* frame); | 547 virtual void frameDetached(WebKit::WebFrame* frame); |
| 546 virtual void willClose(WebKit::WebFrame* frame); | 548 virtual void willClose(WebKit::WebFrame* frame); |
| 547 | 549 |
| 548 // The WebDataSource::ExtraData* is assumed to be a DocumentState* subclass. | 550 // The WebDataSource::ExtraData* is assumed to be a DocumentState* subclass. |
| 549 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation( | 551 virtual WebKit::WebNavigationPolicy decidePolicyForNavigation( |
| 550 WebKit::WebFrame* frame, | 552 WebKit::WebFrame* frame, |
| 551 WebKit::WebDataSource::ExtraData* extraData, | 553 WebKit::WebDataSource::ExtraData* extraData, |
| 552 const WebKit::WebURLRequest& request, | 554 const WebKit::WebURLRequest& request, |
| (...skipping 976 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1529 // use the Observer interface to filter IPC messages and receive frame change | 1531 // use the Observer interface to filter IPC messages and receive frame change |
| 1530 // notifications. | 1532 // notifications. |
| 1531 // --------------------------------------------------------------------------- | 1533 // --------------------------------------------------------------------------- |
| 1532 | 1534 |
| 1533 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1535 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1534 }; | 1536 }; |
| 1535 | 1537 |
| 1536 } // namespace content | 1538 } // namespace content |
| 1537 | 1539 |
| 1538 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1540 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |