Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1308)

Side by Side Diff: content/renderer/render_view_impl.h

Issue 10873064: remove old createMediaPlayer which doesn't have URL as argument. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 WebKit::WebFrame* frame, 526 WebKit::WebFrame* frame,
527 const WebKit::WebPluginParams& params); 527 const WebKit::WebPluginParams& params);
528 virtual WebKit::WebPlugin* createPluginReplacement( 528 virtual WebKit::WebPlugin* createPluginReplacement(
529 WebKit::WebFrame* frame, 529 WebKit::WebFrame* frame,
530 const WebKit::WebPluginParams& params); 530 const WebKit::WebPluginParams& params);
531 virtual WebKit::WebSharedWorker* createSharedWorker( 531 virtual WebKit::WebSharedWorker* createSharedWorker(
532 WebKit::WebFrame* frame, const WebKit::WebURL& url, 532 WebKit::WebFrame* frame, const WebKit::WebURL& url,
533 const WebKit::WebString& name, unsigned long long documentId); 533 const WebKit::WebString& name, unsigned long long documentId);
534 virtual WebKit::WebMediaPlayer* createMediaPlayer( 534 virtual WebKit::WebMediaPlayer* createMediaPlayer(
535 WebKit::WebFrame* frame, 535 WebKit::WebFrame* frame,
536 WebKit::WebMediaPlayerClient* client);
537 virtual WebKit::WebMediaPlayer* createMediaPlayer(
538 WebKit::WebFrame* frame,
539 const WebKit::WebURL& url, 536 const WebKit::WebURL& url,
540 WebKit::WebMediaPlayerClient* client); 537 WebKit::WebMediaPlayerClient* client);
541 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( 538 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(
542 WebKit::WebFrame* frame, 539 WebKit::WebFrame* frame,
543 WebKit::WebApplicationCacheHostClient* client); 540 WebKit::WebApplicationCacheHostClient* client);
544 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); 541 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame);
545 virtual void frameDetached(WebKit::WebFrame* frame); 542 virtual void frameDetached(WebKit::WebFrame* frame);
546 virtual void willClose(WebKit::WebFrame* frame); 543 virtual void willClose(WebKit::WebFrame* frame);
547 virtual void loadURLExternally(WebKit::WebFrame* frame, 544 virtual void loadURLExternally(WebKit::WebFrame* frame,
548 const WebKit::WebURLRequest& request, 545 const WebKit::WebURLRequest& request,
(...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after
1482 // bunch of stuff, you should probably create a helper class and put your 1479 // bunch of stuff, you should probably create a helper class and put your
1483 // data and methods on that to avoid bloating RenderView more. You can 1480 // data and methods on that to avoid bloating RenderView more. You can
1484 // use the Observer interface to filter IPC messages and receive frame change 1481 // use the Observer interface to filter IPC messages and receive frame change
1485 // notifications. 1482 // notifications.
1486 // --------------------------------------------------------------------------- 1483 // ---------------------------------------------------------------------------
1487 1484
1488 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1485 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1489 }; 1486 };
1490 1487
1491 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1488 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698