| OLD | NEW | 
|     1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |     1 // Copyright (c) 2012 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  |     7  | 
|     8 #include <deque> |     8 #include <deque> | 
|     9 #include <map> |     9 #include <map> | 
|    10 #include <set> |    10 #include <set> | 
| (...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   512       const WebKit::WebPluginParams& params); |   512       const WebKit::WebPluginParams& params); | 
|   513   virtual WebKit::WebPlugin* createPluginReplacement( |   513   virtual WebKit::WebPlugin* createPluginReplacement( | 
|   514       WebKit::WebFrame* frame, |   514       WebKit::WebFrame* frame, | 
|   515       const WebKit::WebPluginParams& params); |   515       const WebKit::WebPluginParams& params); | 
|   516   virtual WebKit::WebSharedWorker* createSharedWorker( |   516   virtual WebKit::WebSharedWorker* createSharedWorker( | 
|   517       WebKit::WebFrame* frame, const WebKit::WebURL& url, |   517       WebKit::WebFrame* frame, const WebKit::WebURL& url, | 
|   518       const WebKit::WebString& name, unsigned long long documentId); |   518       const WebKit::WebString& name, unsigned long long documentId); | 
|   519   virtual WebKit::WebMediaPlayer* createMediaPlayer( |   519   virtual WebKit::WebMediaPlayer* createMediaPlayer( | 
|   520       WebKit::WebFrame* frame, |   520       WebKit::WebFrame* frame, | 
|   521       WebKit::WebMediaPlayerClient* client); |   521       WebKit::WebMediaPlayerClient* client); | 
 |   522   virtual WebKit::WebMediaPlayer* createMediaPlayer( | 
 |   523       WebKit::WebFrame* frame, | 
 |   524       const WebKit::WebURL& url, | 
 |   525       WebKit::WebMediaPlayerClient* client); | 
|   522   virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( |   526   virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( | 
|   523       WebKit::WebFrame* frame, |   527       WebKit::WebFrame* frame, | 
|   524       WebKit::WebApplicationCacheHostClient* client); |   528       WebKit::WebApplicationCacheHostClient* client); | 
|   525   virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); |   529   virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); | 
|   526   virtual void frameDetached(WebKit::WebFrame* frame); |   530   virtual void frameDetached(WebKit::WebFrame* frame); | 
|   527   virtual void willClose(WebKit::WebFrame* frame); |   531   virtual void willClose(WebKit::WebFrame* frame); | 
|   528   virtual void loadURLExternally(WebKit::WebFrame* frame, |   532   virtual void loadURLExternally(WebKit::WebFrame* frame, | 
|   529                                  const WebKit::WebURLRequest& request, |   533                                  const WebKit::WebURLRequest& request, | 
|   530                                  WebKit::WebNavigationPolicy policy); |   534                                  WebKit::WebNavigationPolicy policy); | 
|   531   virtual void loadURLExternally(WebKit::WebFrame* frame, |   535   virtual void loadURLExternally(WebKit::WebFrame* frame, | 
| (...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1443   // bunch of stuff, you should probably create a helper class and put your |  1447   // bunch of stuff, you should probably create a helper class and put your | 
|  1444   // data and methods on that to avoid bloating RenderView more.  You can |  1448   // data and methods on that to avoid bloating RenderView more.  You can | 
|  1445   // use the Observer interface to filter IPC messages and receive frame change |  1449   // use the Observer interface to filter IPC messages and receive frame change | 
|  1446   // notifications. |  1450   // notifications. | 
|  1447   // --------------------------------------------------------------------------- |  1451   // --------------------------------------------------------------------------- | 
|  1448  |  1452  | 
|  1449   DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |  1453   DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 
|  1450 }; |  1454 }; | 
|  1451  |  1455  | 
|  1452 #endif  // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |  1456 #endif  // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 
| OLD | NEW |