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

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: Fix typo 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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame); 358 createWorkerContentSettingsClientProxy(blink::WebLocalFrame* frame);
359 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( 359 virtual blink::WebExternalPopupMenu* createExternalPopupMenu(
360 const blink::WebPopupMenuInfo& popup_menu_info, 360 const blink::WebPopupMenuInfo& popup_menu_info,
361 blink::WebExternalPopupMenuClient* popup_menu_client); 361 blink::WebExternalPopupMenuClient* popup_menu_client);
362 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame); 362 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame);
363 virtual blink::WebServiceWorkerProvider* createServiceWorkerProvider( 363 virtual blink::WebServiceWorkerProvider* createServiceWorkerProvider(
364 blink::WebLocalFrame* frame); 364 blink::WebLocalFrame* frame);
365 virtual void didAccessInitialDocument(blink::WebLocalFrame* frame); 365 virtual void didAccessInitialDocument(blink::WebLocalFrame* frame);
366 virtual blink::WebFrame* createChildFrame( 366 virtual blink::WebFrame* createChildFrame(
367 blink::WebLocalFrame* parent, 367 blink::WebLocalFrame* parent,
368 blink::WebTreeScopeType scope,
369 const blink::WebString& name,
370 blink::WebSandboxFlags sandboxFlags);
371 virtual blink::WebFrame* createChildFrame(
372 blink::WebLocalFrame* parent,
368 const blink::WebString& name, 373 const blink::WebString& name,
369 blink::WebSandboxFlags sandboxFlags); 374 blink::WebSandboxFlags sandboxFlags);
370 virtual void didDisownOpener(blink::WebLocalFrame* frame); 375 virtual void didDisownOpener(blink::WebLocalFrame* frame);
371 virtual void frameDetached(blink::WebFrame* frame); 376 virtual void frameDetached(blink::WebFrame* frame);
372 virtual void frameFocused(); 377 virtual void frameFocused();
373 virtual void willClose(blink::WebFrame* frame); 378 virtual void willClose(blink::WebFrame* frame);
374 virtual void didChangeName(blink::WebLocalFrame* frame, 379 virtual void didChangeName(blink::WebLocalFrame* frame,
375 const blink::WebString& name); 380 const blink::WebString& name);
376 virtual void didChangeSandboxFlags(blink::WebFrame* child_frame, 381 virtual void didChangeSandboxFlags(blink::WebFrame* child_frame,
377 blink::WebSandboxFlags flags); 382 blink::WebSandboxFlags flags);
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after
975 #endif 980 #endif
976 981
977 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 982 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
978 983
979 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 984 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
980 }; 985 };
981 986
982 } // namespace content 987 } // namespace content
983 988
984 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 989 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698