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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
432 virtual void zoomLevelChanged(); | 432 virtual void zoomLevelChanged(); |
433 virtual void registerProtocolHandler(const WebKit::WebString& scheme, | 433 virtual void registerProtocolHandler(const WebKit::WebString& scheme, |
434 const WebKit::WebString& base_url, | 434 const WebKit::WebString& base_url, |
435 const WebKit::WebString& url, | 435 const WebKit::WebString& url, |
436 const WebKit::WebString& title); | 436 const WebKit::WebString& title); |
437 virtual void registerIntentHandler(const WebKit::WebString& action, | 437 virtual void registerIntentHandler(const WebKit::WebString& action, |
438 const WebKit::WebString& type, | 438 const WebKit::WebString& type, |
439 const WebKit::WebString& href, | 439 const WebKit::WebString& href, |
440 const WebKit::WebString& title); | 440 const WebKit::WebString& title); |
441 virtual WebKit::WebPageVisibilityState visibilityState() const; | 441 virtual WebKit::WebPageVisibilityState visibilityState() const; |
442 virtual void startActivity(const WebKit::WebString& action, | |
443 const WebKit::WebString& type, | |
James Hawkins
2011/08/17 03:18:39
This is from the other CL, right?
Greg Billock
2011/08/17 18:49:50
Yeah, unfortunately it looks like there's no way t
| |
444 const WebKit::WebString& data, | |
445 int intent_id); | |
442 | 446 |
443 // WebKit::WebFrameClient implementation ------------------------------------- | 447 // WebKit::WebFrameClient implementation ------------------------------------- |
444 | 448 |
445 virtual WebKit::WebPlugin* createPlugin( | 449 virtual WebKit::WebPlugin* createPlugin( |
446 WebKit::WebFrame* frame, | 450 WebKit::WebFrame* frame, |
447 const WebKit::WebPluginParams& params); | 451 const WebKit::WebPluginParams& params); |
448 virtual WebKit::WebWorker* createWorker(WebKit::WebFrame* frame, | 452 virtual WebKit::WebWorker* createWorker(WebKit::WebFrame* frame, |
449 WebKit::WebWorkerClient* client); | 453 WebKit::WebWorkerClient* client); |
450 virtual WebKit::WebSharedWorker* createSharedWorker( | 454 virtual WebKit::WebSharedWorker* createSharedWorker( |
451 WebKit::WebFrame* frame, const WebKit::WebURL& url, | 455 WebKit::WebFrame* frame, const WebKit::WebURL& url, |
(...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1221 // 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 |
1222 // data and methods on that to avoid bloating RenderView more. You can use | 1226 // data and methods on that to avoid bloating RenderView more. You can use |
1223 // the Observer interface to filter IPC messages and receive frame change | 1227 // the Observer interface to filter IPC messages and receive frame change |
1224 // notifications. | 1228 // notifications. |
1225 // --------------------------------------------------------------------------- | 1229 // --------------------------------------------------------------------------- |
1226 | 1230 |
1227 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1231 DISALLOW_COPY_AND_ASSIGN(RenderView); |
1228 }; | 1232 }; |
1229 | 1233 |
1230 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ | 1234 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |