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

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: Oops 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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame); 366 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame);
367 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( 367 virtual blink::WebExternalPopupMenu* createExternalPopupMenu(
368 const blink::WebPopupMenuInfo& popup_menu_info, 368 const blink::WebPopupMenuInfo& popup_menu_info,
369 blink::WebExternalPopupMenuClient* popup_menu_client); 369 blink::WebExternalPopupMenuClient* popup_menu_client);
370 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame); 370 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame);
371 virtual blink::WebServiceWorkerProvider* createServiceWorkerProvider( 371 virtual blink::WebServiceWorkerProvider* createServiceWorkerProvider(
372 blink::WebLocalFrame* frame); 372 blink::WebLocalFrame* frame);
373 virtual void didAccessInitialDocument(blink::WebLocalFrame* frame); 373 virtual void didAccessInitialDocument(blink::WebLocalFrame* frame);
374 virtual blink::WebFrame* createChildFrame( 374 virtual blink::WebFrame* createChildFrame(
375 blink::WebLocalFrame* parent, 375 blink::WebLocalFrame* parent,
376 blink::WebTreeScopeType scope,
377 const blink::WebString& name,
378 blink::WebSandboxFlags sandboxFlags);
379 virtual blink::WebFrame* createChildFrame(
380 blink::WebLocalFrame* parent,
376 const blink::WebString& name, 381 const blink::WebString& name,
377 blink::WebSandboxFlags sandboxFlags); 382 blink::WebSandboxFlags sandboxFlags);
378 virtual void didDisownOpener(blink::WebLocalFrame* frame); 383 virtual void didDisownOpener(blink::WebLocalFrame* frame);
379 virtual void frameDetached(blink::WebFrame* frame); 384 virtual void frameDetached(blink::WebFrame* frame);
380 virtual void frameFocused(); 385 virtual void frameFocused();
381 virtual void willClose(blink::WebFrame* frame); 386 virtual void willClose(blink::WebFrame* frame);
382 virtual void didChangeName(blink::WebLocalFrame* frame, 387 virtual void didChangeName(blink::WebLocalFrame* frame,
383 const blink::WebString& name); 388 const blink::WebString& name);
384 virtual void didChangeSandboxFlags(blink::WebFrame* child_frame, 389 virtual void didChangeSandboxFlags(blink::WebFrame* child_frame,
385 blink::WebSandboxFlags flags); 390 blink::WebSandboxFlags flags);
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
989 #endif 994 #endif
990 995
991 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 996 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
992 997
993 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 998 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
994 }; 999 };
995 1000
996 } // namespace content 1001 } // namespace content
997 1002
998 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1003 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698