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

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

Issue 1635873003: Replicating WebFrame::uniqueName across renderers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dump-render-tree3
Patch Set: Rebasing... Created 4 years, 10 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/public/test/mock_render_thread.cc ('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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 blink::WebExternalPopupMenu* createExternalPopupMenu( 430 blink::WebExternalPopupMenu* createExternalPopupMenu(
431 const blink::WebPopupMenuInfo& popup_menu_info, 431 const blink::WebPopupMenuInfo& popup_menu_info,
432 blink::WebExternalPopupMenuClient* popup_menu_client) override; 432 blink::WebExternalPopupMenuClient* popup_menu_client) override;
433 blink::WebCookieJar* cookieJar() override; 433 blink::WebCookieJar* cookieJar() override;
434 blink::WebServiceWorkerProvider* createServiceWorkerProvider() override; 434 blink::WebServiceWorkerProvider* createServiceWorkerProvider() override;
435 void didAccessInitialDocument() override; 435 void didAccessInitialDocument() override;
436 blink::WebFrame* createChildFrame( 436 blink::WebFrame* createChildFrame(
437 blink::WebLocalFrame* parent, 437 blink::WebLocalFrame* parent,
438 blink::WebTreeScopeType scope, 438 blink::WebTreeScopeType scope,
439 const blink::WebString& name, 439 const blink::WebString& name,
440 blink::WebSandboxFlags sandboxFlags, 440 const blink::WebString& unique_name,
441 const blink::WebFrameOwnerProperties& frameOwnerProperties) override; 441 blink::WebSandboxFlags sandbox_flags,
442 const blink::WebFrameOwnerProperties& frame_owner_properties) override;
442 void didChangeOpener(blink::WebFrame* frame) override; 443 void didChangeOpener(blink::WebFrame* frame) override;
443 void frameDetached(blink::WebFrame* frame, DetachType type) override; 444 void frameDetached(blink::WebFrame* frame, DetachType type) override;
444 void frameFocused() override; 445 void frameFocused() override;
445 void willClose(blink::WebFrame* frame) override; 446 void willClose(blink::WebFrame* frame) override;
446 void didChangeName(const blink::WebString& name) override; 447 void didChangeName(const blink::WebString& name,
448 const blink::WebString& unique_name) override;
447 void didEnforceStrictMixedContentChecking() override; 449 void didEnforceStrictMixedContentChecking() override;
448 void didChangeSandboxFlags(blink::WebFrame* child_frame, 450 void didChangeSandboxFlags(blink::WebFrame* child_frame,
449 blink::WebSandboxFlags flags) override; 451 blink::WebSandboxFlags flags) override;
450 void didChangeFrameOwnerProperties( 452 void didChangeFrameOwnerProperties(
451 blink::WebFrame* child_frame, 453 blink::WebFrame* child_frame,
452 const blink::WebFrameOwnerProperties& frame_owner_properties) override; 454 const blink::WebFrameOwnerProperties& frame_owner_properties) override;
453 void didMatchCSS( 455 void didMatchCSS(
454 blink::WebLocalFrame* frame, 456 blink::WebLocalFrame* frame,
455 const blink::WebVector<blink::WebString>& newly_matching_selectors, 457 const blink::WebVector<blink::WebString>& newly_matching_selectors,
456 const blink::WebVector<blink::WebString>& stopped_matching_selectors) 458 const blink::WebVector<blink::WebString>& stopped_matching_selectors)
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after
1201 #endif 1203 #endif
1202 1204
1203 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1205 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1204 1206
1205 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1207 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1206 }; 1208 };
1207 1209
1208 } // namespace content 1210 } // namespace content
1209 1211
1210 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1212 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/test/mock_render_thread.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698