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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 virtual WebKit::WebSpeechRecognizer* speechRecognizer(); | 491 virtual WebKit::WebSpeechRecognizer* speechRecognizer(); |
492 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient(); | 492 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient(); |
493 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); | 493 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
494 virtual void zoomLevelChanged(); | 494 virtual void zoomLevelChanged(); |
495 virtual void registerProtocolHandler(const WebKit::WebString& scheme, | 495 virtual void registerProtocolHandler(const WebKit::WebString& scheme, |
496 const WebKit::WebString& base_url, | 496 const WebKit::WebString& base_url, |
497 const WebKit::WebString& url, | 497 const WebKit::WebString& url, |
498 const WebKit::WebString& title); | 498 const WebKit::WebString& title); |
499 virtual WebKit::WebPageVisibilityState visibilityState() const; | 499 virtual WebKit::WebPageVisibilityState visibilityState() const; |
500 virtual WebKit::WebUserMediaClient* userMediaClient(); | 500 virtual WebKit::WebUserMediaClient* userMediaClient(); |
| 501 virtual void draggableRegionsChanged(); |
501 | 502 |
502 // WebKit::WebFrameClient implementation ------------------------------------- | 503 // WebKit::WebFrameClient implementation ------------------------------------- |
503 | 504 |
504 virtual WebKit::WebPlugin* createPlugin( | 505 virtual WebKit::WebPlugin* createPlugin( |
505 WebKit::WebFrame* frame, | 506 WebKit::WebFrame* frame, |
506 const WebKit::WebPluginParams& params); | 507 const WebKit::WebPluginParams& params); |
507 virtual WebKit::WebPlugin* createPluginReplacement( | 508 virtual WebKit::WebPlugin* createPluginReplacement( |
508 WebKit::WebFrame* frame, | 509 WebKit::WebFrame* frame, |
509 const WebKit::WebPluginParams& params); | 510 const WebKit::WebPluginParams& params); |
510 virtual WebKit::WebSharedWorker* createSharedWorker( | 511 virtual WebKit::WebSharedWorker* createSharedWorker( |
(...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1436 // bunch of stuff, you should probably create a helper class and put your | 1437 // bunch of stuff, you should probably create a helper class and put your |
1437 // data and methods on that to avoid bloating RenderView more. You can | 1438 // data and methods on that to avoid bloating RenderView more. You can |
1438 // use the Observer interface to filter IPC messages and receive frame change | 1439 // use the Observer interface to filter IPC messages and receive frame change |
1439 // notifications. | 1440 // notifications. |
1440 // --------------------------------------------------------------------------- | 1441 // --------------------------------------------------------------------------- |
1441 | 1442 |
1442 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1443 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1443 }; | 1444 }; |
1444 | 1445 |
1445 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1446 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |