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

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

Issue 1489253002: Plumb document's strict mixed content checking for RemoteFrames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years 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 <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 blink::WebTreeScopeType scope, 421 blink::WebTreeScopeType scope,
422 const blink::WebString& name, 422 const blink::WebString& name,
423 blink::WebSandboxFlags sandboxFlags, 423 blink::WebSandboxFlags sandboxFlags,
424 const blink::WebFrameOwnerProperties& frameOwnerProperties) override; 424 const blink::WebFrameOwnerProperties& frameOwnerProperties) override;
425 void didChangeOpener(blink::WebFrame* frame) override; 425 void didChangeOpener(blink::WebFrame* frame) override;
426 void frameDetached(blink::WebFrame* frame, DetachType type) override; 426 void frameDetached(blink::WebFrame* frame, DetachType type) override;
427 void frameFocused() override; 427 void frameFocused() override;
428 void willClose(blink::WebFrame* frame) override; 428 void willClose(blink::WebFrame* frame) override;
429 void didChangeName(blink::WebLocalFrame* frame, 429 void didChangeName(blink::WebLocalFrame* frame,
430 const blink::WebString& name) override; 430 const blink::WebString& name) override;
431 void didChangeShouldEnforceStrictMixedContentChecking(
432 blink::WebLocalFrame* frame,
433 bool shouldEnforceStrictMixedContentChecking) override;
431 void didChangeSandboxFlags(blink::WebFrame* child_frame, 434 void didChangeSandboxFlags(blink::WebFrame* child_frame,
432 blink::WebSandboxFlags flags) override; 435 blink::WebSandboxFlags flags) override;
433 virtual void didChangeFrameOwnerProperties( 436 virtual void didChangeFrameOwnerProperties(
434 blink::WebFrame* child_frame, 437 blink::WebFrame* child_frame,
435 const blink::WebFrameOwnerProperties& frame_owner_properties) override; 438 const blink::WebFrameOwnerProperties& frame_owner_properties) override;
436 void didMatchCSS( 439 void didMatchCSS(
437 blink::WebLocalFrame* frame, 440 blink::WebLocalFrame* frame,
438 const blink::WebVector<blink::WebString>& newly_matching_selectors, 441 const blink::WebVector<blink::WebString>& newly_matching_selectors,
439 const blink::WebVector<blink::WebString>& stopped_matching_selectors) 442 const blink::WebVector<blink::WebString>& stopped_matching_selectors)
440 override; 443 override;
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after
1108 #endif 1111 #endif
1109 1112
1110 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1113 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1111 1114
1112 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1115 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1113 }; 1116 };
1114 1117
1115 } // namespace content 1118 } // namespace content
1116 1119
1117 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1120 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698