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

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

Issue 797813006: Replicate sandbox flags for OOPIF (Chromium part 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@iframe-sandbox-flags-part1
Patch Set: Fix issue in previous rebase Created 5 years, 11 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
« no previous file with comments | « content/common/frame_replication_state.h ('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 <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 blink::WebApplicationCacheHostClient* client); 351 blink::WebApplicationCacheHostClient* client);
352 virtual blink::WebWorkerPermissionClientProxy* 352 virtual blink::WebWorkerPermissionClientProxy*
353 createWorkerPermissionClientProxy(blink::WebLocalFrame* frame); 353 createWorkerPermissionClientProxy(blink::WebLocalFrame* frame);
354 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( 354 virtual blink::WebExternalPopupMenu* createExternalPopupMenu(
355 const blink::WebPopupMenuInfo& popup_menu_info, 355 const blink::WebPopupMenuInfo& popup_menu_info,
356 blink::WebExternalPopupMenuClient* popup_menu_client); 356 blink::WebExternalPopupMenuClient* popup_menu_client);
357 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame); 357 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame);
358 virtual blink::WebServiceWorkerProvider* createServiceWorkerProvider( 358 virtual blink::WebServiceWorkerProvider* createServiceWorkerProvider(
359 blink::WebLocalFrame* frame); 359 blink::WebLocalFrame* frame);
360 virtual void didAccessInitialDocument(blink::WebLocalFrame* frame); 360 virtual void didAccessInitialDocument(blink::WebLocalFrame* frame);
361 // TODO(alexmos): Remove once Blink is updated to use the version that takes
362 // sandboxFlags.
363 virtual blink::WebFrame* createChildFrame(blink::WebLocalFrame* parent,
364 const blink::WebString& name);
365 virtual blink::WebFrame* createChildFrame( 361 virtual blink::WebFrame* createChildFrame(
366 blink::WebLocalFrame* parent, 362 blink::WebLocalFrame* parent,
367 const blink::WebString& name, 363 const blink::WebString& name,
368 blink::WebSandboxFlags sandboxFlags); 364 blink::WebSandboxFlags sandboxFlags);
369 virtual void didDisownOpener(blink::WebLocalFrame* frame); 365 virtual void didDisownOpener(blink::WebLocalFrame* frame);
370 virtual void frameDetached(blink::WebFrame* frame); 366 virtual void frameDetached(blink::WebFrame* frame);
371 virtual void frameFocused(); 367 virtual void frameFocused();
372 virtual void willClose(blink::WebFrame* frame); 368 virtual void willClose(blink::WebFrame* frame);
373 virtual void didChangeName(blink::WebLocalFrame* frame, 369 virtual void didChangeName(blink::WebLocalFrame* frame,
374 const blink::WebString& name); 370 const blink::WebString& name);
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
869 #endif 865 #endif
870 866
871 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 867 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
872 868
873 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 869 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
874 }; 870 };
875 871
876 } // namespace content 872 } // namespace content
877 873
878 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 874 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/common/frame_replication_state.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698