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

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

Issue 8416029: Removing dedicated worker-related IPC code (second round). (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Style nit Created 9 years, 1 month 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
« no previous file with comments | « content/content_renderer.gypi ('k') | 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) 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
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
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_
OLDNEW
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698