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

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: Fix workerid Created 7 years, 2 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 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 const WebKit::WebString& name, 46 const WebKit::WebString& name,
47 unsigned long long document_id); 47 unsigned long long document_id);
48 virtual WebKit::WebMediaPlayer* createMediaPlayer( 48 virtual WebKit::WebMediaPlayer* createMediaPlayer(
49 WebKit::WebFrame* frame, 49 WebKit::WebFrame* frame,
50 const WebKit::WebURL& url, 50 const WebKit::WebURL& url,
51 WebKit::WebMediaPlayerClient* client); 51 WebKit::WebMediaPlayerClient* client);
52 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost( 52 virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(
53 WebKit::WebFrame* frame, 53 WebKit::WebFrame* frame,
54 WebKit::WebApplicationCacheHostClient* client); 54 WebKit::WebApplicationCacheHostClient* client);
55 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame); 55 virtual WebKit::WebCookieJar* cookieJar(WebKit::WebFrame* frame);
56 virtual WebKit::WebServiceWorkerRegistry* serviceWorkerRegistry(
michaeln 2013/10/04 01:26:07 I think I'd like to back up to the original blink
kinuko 2013/10/04 14:55:48 +1, except that I have not fully understood how We
57 WebKit::WebFrame* frame);
56 virtual void didAccessInitialDocument(WebKit::WebFrame* frame); 58 virtual void didAccessInitialDocument(WebKit::WebFrame* frame);
57 virtual void didCreateFrame(WebKit::WebFrame* parent, 59 virtual void didCreateFrame(WebKit::WebFrame* parent,
58 WebKit::WebFrame* child); 60 WebKit::WebFrame* child);
59 virtual void didDisownOpener(WebKit::WebFrame* frame); 61 virtual void didDisownOpener(WebKit::WebFrame* frame);
60 virtual void frameDetached(WebKit::WebFrame* frame); 62 virtual void frameDetached(WebKit::WebFrame* frame);
61 virtual void willClose(WebKit::WebFrame* frame); 63 virtual void willClose(WebKit::WebFrame* frame);
62 virtual void didChangeName(WebKit::WebFrame* frame, 64 virtual void didChangeName(WebKit::WebFrame* frame,
63 const WebKit::WebString& name); 65 const WebKit::WebString& name);
64 virtual void loadURLExternally(WebKit::WebFrame* frame, 66 virtual void loadURLExternally(WebKit::WebFrame* frame,
65 const WebKit::WebURLRequest& request, 67 const WebKit::WebURLRequest& request,
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 int routing_id_; 189 int routing_id_;
188 bool is_swapped_out_; 190 bool is_swapped_out_;
189 bool is_detaching_; 191 bool is_detaching_;
190 192
191 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 193 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
192 }; 194 };
193 195
194 } // namespace content 196 } // namespace content
195 197
196 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 198 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698