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

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

Issue 1550233002: Move mixed content settings histograms into browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: typo fix Created 4 years, 11 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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 void didAccessInitialDocument(blink::WebLocalFrame* frame) override; 428 void didAccessInitialDocument(blink::WebLocalFrame* frame) override;
429 blink::WebFrame* createChildFrame( 429 blink::WebFrame* createChildFrame(
430 blink::WebLocalFrame* parent, 430 blink::WebLocalFrame* parent,
431 blink::WebTreeScopeType scope, 431 blink::WebTreeScopeType scope,
432 const blink::WebString& name, 432 const blink::WebString& name,
433 blink::WebSandboxFlags sandboxFlags, 433 blink::WebSandboxFlags sandboxFlags,
434 const blink::WebFrameOwnerProperties& frameOwnerProperties) override; 434 const blink::WebFrameOwnerProperties& frameOwnerProperties) override;
435 void didChangeOpener(blink::WebFrame* frame) override; 435 void didChangeOpener(blink::WebFrame* frame) override;
436 void frameDetached(blink::WebFrame* frame, DetachType type) override; 436 void frameDetached(blink::WebFrame* frame, DetachType type) override;
437 void frameFocused() override; 437 void frameFocused() override;
438 void triedDisplayingInsecureContent(const blink::WebSecurityOrigin&,
439 const blink::WebURL&) override;
440 void triedRunningInsecureContent(const blink::WebSecurityOrigin&,
441 const blink::WebURL&) override;
438 void willClose(blink::WebFrame* frame) override; 442 void willClose(blink::WebFrame* frame) override;
439 void didChangeName(blink::WebLocalFrame* frame, 443 void didChangeName(blink::WebLocalFrame* frame,
440 const blink::WebString& name) override; 444 const blink::WebString& name) override;
441 void didEnforceStrictMixedContentChecking() override; 445 void didEnforceStrictMixedContentChecking() override;
442 void didChangeSandboxFlags(blink::WebFrame* child_frame, 446 void didChangeSandboxFlags(blink::WebFrame* child_frame,
443 blink::WebSandboxFlags flags) override; 447 blink::WebSandboxFlags flags) override;
444 void didChangeFrameOwnerProperties( 448 void didChangeFrameOwnerProperties(
445 blink::WebFrame* child_frame, 449 blink::WebFrame* child_frame,
446 const blink::WebFrameOwnerProperties& frame_owner_properties) override; 450 const blink::WebFrameOwnerProperties& frame_owner_properties) override;
447 void didMatchCSS( 451 void didMatchCSS(
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after
1166 #endif 1170 #endif
1167 1171
1168 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1172 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1169 1173
1170 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1174 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1171 }; 1175 };
1172 1176
1173 } // namespace content 1177 } // namespace content
1174 1178
1175 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1179 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698