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

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

Issue 2873503002: NOT YET READY: Improve granularity of window namespaces in Blink.
Patch Set: Rebasing... Created 3 years, 6 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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 service_manager::InterfaceProvider* GetInterfaceProvider() override; 503 service_manager::InterfaceProvider* GetInterfaceProvider() override;
504 void DidAccessInitialDocument() override; 504 void DidAccessInitialDocument() override;
505 blink::WebLocalFrame* CreateChildFrame( 505 blink::WebLocalFrame* CreateChildFrame(
506 blink::WebLocalFrame* parent, 506 blink::WebLocalFrame* parent,
507 blink::WebTreeScopeType scope, 507 blink::WebTreeScopeType scope,
508 const blink::WebString& name, 508 const blink::WebString& name,
509 const blink::WebString& fallback_name, 509 const blink::WebString& fallback_name,
510 blink::WebSandboxFlags sandbox_flags, 510 blink::WebSandboxFlags sandbox_flags,
511 const blink::WebParsedFeaturePolicy& container_policy, 511 const blink::WebParsedFeaturePolicy& container_policy,
512 const blink::WebFrameOwnerProperties& frame_owner_properties) override; 512 const blink::WebFrameOwnerProperties& frame_owner_properties) override;
513 blink::WebFrame* FindFrame(const blink::WebString& name) override;
513 void DidChangeOpener(blink::WebFrame* frame) override; 514 void DidChangeOpener(blink::WebFrame* frame) override;
514 void FrameDetached(blink::WebLocalFrame* frame, DetachType type) override; 515 void FrameDetached(blink::WebLocalFrame* frame, DetachType type) override;
515 void FrameFocused() override; 516 void FrameFocused() override;
516 void WillCommitProvisionalLoad() override; 517 void WillCommitProvisionalLoad() override;
517 void DidChangeName(const blink::WebString& name) override; 518 void DidChangeName(const blink::WebString& name) override;
518 void DidEnforceInsecureRequestPolicy( 519 void DidEnforceInsecureRequestPolicy(
519 blink::WebInsecureRequestPolicy policy) override; 520 blink::WebInsecureRequestPolicy policy) override;
520 void DidUpdateToUniqueOrigin( 521 void DidUpdateToUniqueOrigin(
521 bool is_potentially_trustworthy_unique_origin) override; 522 bool is_potentially_trustworthy_unique_origin) override;
522 void DidChangeFramePolicy( 523 void DidChangeFramePolicy(
(...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after
1421 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; 1422 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_;
1422 1423
1423 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1424 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1424 1425
1425 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1426 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1426 }; 1427 };
1427 1428
1428 } // namespace content 1429 } // namespace content
1429 1430
1430 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1431 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/renderer/content_renderer_client.cc ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698