| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 virtual WebKit::WebGeolocationClient* geolocationClient(); | 423 virtual WebKit::WebGeolocationClient* geolocationClient(); |
| 424 virtual WebKit::WebSpeechInputController* speechInputController( | 424 virtual WebKit::WebSpeechInputController* speechInputController( |
| 425 WebKit::WebSpeechInputListener* listener); | 425 WebKit::WebSpeechInputListener* listener); |
| 426 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient(); | 426 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient(); |
| 427 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); | 427 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
| 428 virtual void zoomLevelChanged(); | 428 virtual void zoomLevelChanged(); |
| 429 virtual void registerProtocolHandler(const WebKit::WebString& scheme, | 429 virtual void registerProtocolHandler(const WebKit::WebString& scheme, |
| 430 const WebKit::WebString& base_url, | 430 const WebKit::WebString& base_url, |
| 431 const WebKit::WebString& url, | 431 const WebKit::WebString& url, |
| 432 const WebKit::WebString& title); | 432 const WebKit::WebString& title); |
| 433 virtual void registerIntentHandler(const WebKit::WebString& action, |
| 434 const WebKit::WebString& type, |
| 435 const WebKit::WebString& href, |
| 436 const WebKit::WebString& title); |
| 433 virtual WebKit::WebPageVisibilityState visibilityState() const; | 437 virtual WebKit::WebPageVisibilityState visibilityState() const; |
| 434 | 438 |
| 435 // WebKit::WebFrameClient implementation ------------------------------------- | 439 // WebKit::WebFrameClient implementation ------------------------------------- |
| 436 | 440 |
| 437 virtual WebKit::WebPlugin* createPlugin( | 441 virtual WebKit::WebPlugin* createPlugin( |
| 438 WebKit::WebFrame* frame, | 442 WebKit::WebFrame* frame, |
| 439 const WebKit::WebPluginParams& params); | 443 const WebKit::WebPluginParams& params); |
| 440 virtual WebKit::WebWorker* createWorker(WebKit::WebFrame* frame, | 444 virtual WebKit::WebWorker* createWorker(WebKit::WebFrame* frame, |
| 441 WebKit::WebWorkerClient* client); | 445 WebKit::WebWorkerClient* client); |
| 442 virtual WebKit::WebSharedWorker* createSharedWorker( | 446 virtual WebKit::WebSharedWorker* createSharedWorker( |
| (...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1187 // bunch of stuff, you should probably create a helper class and put your | 1191 // bunch of stuff, you should probably create a helper class and put your |
| 1188 // data and methods on that to avoid bloating RenderView more. You can use | 1192 // data and methods on that to avoid bloating RenderView more. You can use |
| 1189 // the Observer interface to filter IPC messages and receive frame change | 1193 // the Observer interface to filter IPC messages and receive frame change |
| 1190 // notifications. | 1194 // notifications. |
| 1191 // --------------------------------------------------------------------------- | 1195 // --------------------------------------------------------------------------- |
| 1192 | 1196 |
| 1193 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1197 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1194 }; | 1198 }; |
| 1195 | 1199 |
| 1196 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ | 1200 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |