| 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_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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient(); | 391 virtual WebKit::WebDeviceOrientationClient* deviceOrientationClient(); |
| 392 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); | 392 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
| 393 virtual void zoomLevelChanged(); | 393 virtual void zoomLevelChanged(); |
| 394 virtual void registerProtocolHandler(const WebKit::WebString& scheme, | 394 virtual void registerProtocolHandler(const WebKit::WebString& scheme, |
| 395 const WebKit::WebString& base_url, | 395 const WebKit::WebString& base_url, |
| 396 const WebKit::WebString& url, | 396 const WebKit::WebString& url, |
| 397 const WebKit::WebString& title); | 397 const WebKit::WebString& title); |
| 398 virtual void registerIntentHandler(const WebKit::WebString& action, | 398 virtual void registerIntentHandler(const WebKit::WebString& action, |
| 399 const WebKit::WebString& type, | 399 const WebKit::WebString& type, |
| 400 const WebKit::WebString& href, | 400 const WebKit::WebString& href, |
| 401 const WebKit::WebString& title); | 401 const WebKit::WebString& title, |
| 402 const WebKit::WebString& disposition); |
| 402 virtual WebKit::WebPageVisibilityState visibilityState() const; | 403 virtual WebKit::WebPageVisibilityState visibilityState() const; |
| 403 virtual void startActivity(const WebKit::WebString& action, | 404 virtual void startActivity(const WebKit::WebString& action, |
| 404 const WebKit::WebString& type, | 405 const WebKit::WebString& type, |
| 405 const WebKit::WebString& data, | 406 const WebKit::WebString& data, |
| 406 int intent_id); | 407 int intent_id); |
| 407 | 408 |
| 408 // WebKit::WebFrameClient implementation ------------------------------------- | 409 // WebKit::WebFrameClient implementation ------------------------------------- |
| 409 | 410 |
| 410 virtual WebKit::WebPlugin* createPlugin( | 411 virtual WebKit::WebPlugin* createPlugin( |
| 411 WebKit::WebFrame* frame, | 412 WebKit::WebFrame* frame, |
| (...skipping 812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1224 // bunch of stuff, you should probably create a helper class and put your | 1225 // bunch of stuff, you should probably create a helper class and put your |
| 1225 // data and methods on that to avoid bloating RenderView more. You can | 1226 // data and methods on that to avoid bloating RenderView more. You can |
| 1226 // use the Observer interface to filter IPC messages and receive frame change | 1227 // use the Observer interface to filter IPC messages and receive frame change |
| 1227 // notifications. | 1228 // notifications. |
| 1228 // --------------------------------------------------------------------------- | 1229 // --------------------------------------------------------------------------- |
| 1229 | 1230 |
| 1230 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1231 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1231 }; | 1232 }; |
| 1232 | 1233 |
| 1233 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1234 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |