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

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

Issue 1141283002: Replicate whether a frame is in a document or shadow tree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 5 years, 7 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
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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame); 363 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame);
364 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( 364 virtual blink::WebExternalPopupMenu* createExternalPopupMenu(
365 const blink::WebPopupMenuInfo& popup_menu_info, 365 const blink::WebPopupMenuInfo& popup_menu_info,
366 blink::WebExternalPopupMenuClient* popup_menu_client); 366 blink::WebExternalPopupMenuClient* popup_menu_client);
367 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame); 367 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame);
368 virtual blink::WebServiceWorkerProvider* createServiceWorkerProvider( 368 virtual blink::WebServiceWorkerProvider* createServiceWorkerProvider(
369 blink::WebLocalFrame* frame); 369 blink::WebLocalFrame* frame);
370 virtual void didAccessInitialDocument(blink::WebLocalFrame* frame); 370 virtual void didAccessInitialDocument(blink::WebLocalFrame* frame);
371 virtual blink::WebFrame* createChildFrame( 371 virtual blink::WebFrame* createChildFrame(
372 blink::WebLocalFrame* parent, 372 blink::WebLocalFrame* parent,
373 blink::WebTreeScopeType scope,
374 const blink::WebString& name,
375 blink::WebSandboxFlags sandboxFlags);
376 virtual blink::WebFrame* createChildFrame(
377 blink::WebLocalFrame* parent,
373 const blink::WebString& name, 378 const blink::WebString& name,
374 blink::WebSandboxFlags sandboxFlags); 379 blink::WebSandboxFlags sandboxFlags);
375 virtual void didDisownOpener(blink::WebLocalFrame* frame); 380 virtual void didDisownOpener(blink::WebLocalFrame* frame);
376 virtual void frameDetached(blink::WebFrame* frame); 381 virtual void frameDetached(blink::WebFrame* frame);
377 virtual void frameFocused(); 382 virtual void frameFocused();
378 virtual void willClose(blink::WebFrame* frame); 383 virtual void willClose(blink::WebFrame* frame);
379 virtual void didChangeName(blink::WebLocalFrame* frame, 384 virtual void didChangeName(blink::WebLocalFrame* frame,
380 const blink::WebString& name); 385 const blink::WebString& name);
381 virtual void didChangeSandboxFlags(blink::WebFrame* child_frame, 386 virtual void didChangeSandboxFlags(blink::WebFrame* child_frame,
382 blink::WebSandboxFlags flags); 387 blink::WebSandboxFlags flags);
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
980 #endif 985 #endif
981 986
982 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 987 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
983 988
984 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 989 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
985 }; 990 };
986 991
987 } // namespace content 992 } // namespace content
988 993
989 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 994 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698