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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 virtual void startActivity(const WebKit::WebString& action, | 404 virtual void startActivity(const WebKit::WebString& action, |
405 const WebKit::WebString& type, | 405 const WebKit::WebString& type, |
406 const WebKit::WebString& data, | 406 const WebKit::WebString& data, |
407 int intent_id); | 407 int intent_id); |
408 | 408 |
409 // WebKit::WebFrameClient implementation ------------------------------------- | 409 // WebKit::WebFrameClient implementation ------------------------------------- |
410 | 410 |
411 virtual WebKit::WebPlugin* createPlugin( | 411 virtual WebKit::WebPlugin* createPlugin( |
412 WebKit::WebFrame* frame, | 412 WebKit::WebFrame* frame, |
413 const WebKit::WebPluginParams& params); | 413 const WebKit::WebPluginParams& params); |
414 virtual WebKit::WebWorker* createWorker(WebKit::WebFrame* frame, | |
415 WebKit::WebWorkerClient* client); | |
416 virtual WebKit::WebSharedWorker* createSharedWorker( | 414 virtual WebKit::WebSharedWorker* createSharedWorker( |
417 WebKit::WebFrame* frame, const WebKit::WebURL& url, | 415 WebKit::WebFrame* frame, const WebKit::WebURL& url, |
418 const WebKit::WebString& name, unsigned long long documentId); | 416 const WebKit::WebString& name, unsigned long long documentId); |
419 virtual WebKit::WebMediaPlayer* createMediaPlayer( | 417 virtual WebKit::WebMediaPlayer* createMediaPlayer( |
420 WebKit::WebFrame* frame, | 418 WebKit::WebFrame* frame, |
421 WebKit::WebMediaPlayerClient* client); | 419 WebKit::WebMediaPlayerClient* client); |
422 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( | 420 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( |
423 WebKit::WebFrame* frame, | 421 WebKit::WebFrame* frame, |
424 WebKit::WebApplicationCacheHostClient* client); | 422 WebKit::WebApplicationCacheHostClient* client); |
425 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); | 423 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); |
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1225 // bunch of stuff, you should probably create a helper class and put your | 1223 // bunch of stuff, you should probably create a helper class and put your |
1226 // data and methods on that to avoid bloating RenderView more. You can | 1224 // data and methods on that to avoid bloating RenderView more. You can |
1227 // use the Observer interface to filter IPC messages and receive frame change | 1225 // use the Observer interface to filter IPC messages and receive frame change |
1228 // notifications. | 1226 // notifications. |
1229 // --------------------------------------------------------------------------- | 1227 // --------------------------------------------------------------------------- |
1230 | 1228 |
1231 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1229 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1232 }; | 1230 }; |
1233 | 1231 |
1234 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1232 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |