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

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

Issue 10836025: Part 1: Plumb render view ID to render host (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address review comments Created 8 years, 4 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
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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 const WebKit::WebPluginParams& params); 506 const WebKit::WebPluginParams& params);
507 virtual WebKit::WebSharedWorker* createSharedWorker( 507 virtual WebKit::WebSharedWorker* createSharedWorker(
508 WebKit::WebFrame* frame, const WebKit::WebURL& url, 508 WebKit::WebFrame* frame, const WebKit::WebURL& url,
509 const WebKit::WebString& name, unsigned long long documentId); 509 const WebKit::WebString& name, unsigned long long documentId);
510 virtual WebKit::WebMediaPlayer* createMediaPlayer( 510 virtual WebKit::WebMediaPlayer* createMediaPlayer(
511 WebKit::WebFrame* frame, 511 WebKit::WebFrame* frame,
512 WebKit::WebMediaPlayerClient* client); 512 WebKit::WebMediaPlayerClient* client);
513 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( 513 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(
514 WebKit::WebFrame* frame, 514 WebKit::WebFrame* frame,
515 WebKit::WebApplicationCacheHostClient* client); 515 WebKit::WebApplicationCacheHostClient* client);
516 virtual WebKit::WebAudioDevice* createAudioDevice(
517 size_t bufferSize,
518 unsigned numberOfChannels,
519 double sampleRate,
520 WebKit::WebAudioDevice::RenderCallback* callback) OVERRIDE;
516 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); 521 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame);
517 virtual void frameDetached(WebKit::WebFrame* frame); 522 virtual void frameDetached(WebKit::WebFrame* frame);
518 virtual void willClose(WebKit::WebFrame* frame); 523 virtual void willClose(WebKit::WebFrame* frame);
519 virtual void loadURLExternally(WebKit::WebFrame* frame, 524 virtual void loadURLExternally(WebKit::WebFrame* frame,
520 const WebKit::WebURLRequest& request, 525 const WebKit::WebURLRequest& request,
521 WebKit::WebNavigationPolicy policy); 526 WebKit::WebNavigationPolicy policy);
522 virtual void loadURLExternally(WebKit::WebFrame* frame, 527 virtual void loadURLExternally(WebKit::WebFrame* frame,
523 const WebKit::WebURLRequest& request, 528 const WebKit::WebURLRequest& request,
524 WebKit::WebNavigationPolicy policy, 529 WebKit::WebNavigationPolicy policy,
525 const WebKit::WebString& suggested_name); 530 const WebKit::WebString& suggested_name);
(...skipping 903 matching lines...) Expand 10 before | Expand all | Expand 10 after
1429 // bunch of stuff, you should probably create a helper class and put your 1434 // bunch of stuff, you should probably create a helper class and put your
1430 // data and methods on that to avoid bloating RenderView more. You can 1435 // data and methods on that to avoid bloating RenderView more. You can
1431 // use the Observer interface to filter IPC messages and receive frame change 1436 // use the Observer interface to filter IPC messages and receive frame change
1432 // notifications. 1437 // notifications.
1433 // --------------------------------------------------------------------------- 1438 // ---------------------------------------------------------------------------
1434 1439
1435 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1440 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1436 }; 1441 };
1437 1442
1438 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1443 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698