| 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 CHROME_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
| 6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 const WebKit::WebAccessibilityObject& obj, | 460 const WebKit::WebAccessibilityObject& obj, |
| 461 WebKit::WebAccessibilityNotification notification); | 461 WebKit::WebAccessibilityNotification notification); |
| 462 virtual void didUpdateInspectorSetting(const WebKit::WebString& key, | 462 virtual void didUpdateInspectorSetting(const WebKit::WebString& key, |
| 463 const WebKit::WebString& value); | 463 const WebKit::WebString& value); |
| 464 virtual WebKit::WebGeolocationClient* geolocationClient(); | 464 virtual WebKit::WebGeolocationClient* geolocationClient(); |
| 465 virtual WebKit::WebSpeechInputController* speechInputController( | 465 virtual WebKit::WebSpeechInputController* speechInputController( |
| 466 WebKit::WebSpeechInputListener* listener); | 466 WebKit::WebSpeechInputListener* listener); |
| 467 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient(); | 467 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient(); |
| 468 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); | 468 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
| 469 virtual void zoomLevelChanged(); | 469 virtual void zoomLevelChanged(); |
| 470 virtual bool isWebCopyCutEnabled(); |
| 471 virtual bool isWebPasteEnabled(); |
| 470 | 472 |
| 471 // WebKit::WebFrameClient implementation ------------------------------------- | 473 // WebKit::WebFrameClient implementation ------------------------------------- |
| 472 | 474 |
| 473 virtual WebKit::WebPlugin* createPlugin( | 475 virtual WebKit::WebPlugin* createPlugin( |
| 474 WebKit::WebFrame* frame, | 476 WebKit::WebFrame* frame, |
| 475 const WebKit::WebPluginParams& params); | 477 const WebKit::WebPluginParams& params); |
| 476 virtual WebKit::WebWorker* createWorker(WebKit::WebFrame* frame, | 478 virtual WebKit::WebWorker* createWorker(WebKit::WebFrame* frame, |
| 477 WebKit::WebWorkerClient* client); | 479 WebKit::WebWorkerClient* client); |
| 478 virtual WebKit::WebSharedWorker* createSharedWorker( | 480 virtual WebKit::WebSharedWorker* createSharedWorker( |
| 479 WebKit::WebFrame* frame, const WebKit::WebURL& url, | 481 WebKit::WebFrame* frame, const WebKit::WebURL& url, |
| (...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1428 // bunch of stuff, you should probably create a helper class and put your | 1430 // bunch of stuff, you should probably create a helper class and put your |
| 1429 // data and methods on that to avoid bloating RenderView more. You can use | 1431 // data and methods on that to avoid bloating RenderView more. You can use |
| 1430 // the Observer interface to filter IPC messages and receive frame change | 1432 // the Observer interface to filter IPC messages and receive frame change |
| 1431 // notifications. | 1433 // notifications. |
| 1432 // --------------------------------------------------------------------------- | 1434 // --------------------------------------------------------------------------- |
| 1433 | 1435 |
| 1434 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1436 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1435 }; | 1437 }; |
| 1436 | 1438 |
| 1437 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1439 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |