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

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

Issue 25008006: Flush out initial [un]registerServiceWorker roundtrip (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove render_process_id_ for now Created 7 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 | Annotate | Revision Log
« no previous file with comments | « content/content_child.gypi ('k') | content/renderer/render_frame_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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "content/public/renderer/render_frame.h" 9 #include "content/public/renderer/render_frame.h"
10 #include "ipc/ipc_message.h" 10 #include "ipc/ipc_message.h"
(...skipping 30 matching lines...) Expand all
41 WebKit::WebFrame* frame, 41 WebKit::WebFrame* frame,
42 const WebKit::WebPluginParams& params); 42 const WebKit::WebPluginParams& params);
43 virtual WebKit::WebMediaPlayer* createMediaPlayer( 43 virtual WebKit::WebMediaPlayer* createMediaPlayer(
44 WebKit::WebFrame* frame, 44 WebKit::WebFrame* frame,
45 const WebKit::WebURL& url, 45 const WebKit::WebURL& url,
46 WebKit::WebMediaPlayerClient* client); 46 WebKit::WebMediaPlayerClient* client);
47 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( 47 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(
48 WebKit::WebFrame* frame, 48 WebKit::WebFrame* frame,
49 WebKit::WebApplicationCacheHostClient* client); 49 WebKit::WebApplicationCacheHostClient* client);
50 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); 50 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame);
51 virtual WebKit::WebServiceWorkerProvider* createServiceWorkerProvider(
52 WebKit::WebFrame* frame,
53 WebKit::WebServiceWorkerProviderClient*);
51 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); 54 virtual void didAccessInitialDocument(WebKit::WebFrame* frame);
52 virtual WebKit::WebFrame* createChildFrame(WebKit::WebFrame* parent, 55 virtual WebKit::WebFrame* createChildFrame(WebKit::WebFrame* parent,
53 const WebKit::WebString& name); 56 const WebKit::WebString& name);
54 virtual void didDisownOpener(WebKit::WebFrame* frame); 57 virtual void didDisownOpener(WebKit::WebFrame* frame);
55 virtual void frameDetached(WebKit::WebFrame* frame); 58 virtual void frameDetached(WebKit::WebFrame* frame);
56 virtual void willClose(WebKit::WebFrame* frame); 59 virtual void willClose(WebKit::WebFrame* frame);
57 virtual void didChangeName(WebKit::WebFrame* frame, 60 virtual void didChangeName(WebKit::WebFrame* frame,
58 const WebKit::WebString& name); 61 const WebKit::WebString& name);
59 virtual void didMatchCSS( 62 virtual void didMatchCSS(
60 WebKit::WebFrame* frame, 63 WebKit::WebFrame* frame,
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 int routing_id_; 189 int routing_id_;
187 bool is_swapped_out_; 190 bool is_swapped_out_;
188 bool is_detaching_; 191 bool is_detaching_;
189 192
190 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 193 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
191 }; 194 };
192 195
193 } // namespace content 196 } // namespace content
194 197
195 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 198 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/content_child.gypi ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698