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

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

Issue 1415923015: Downgrade lock icon for broken-HTTPS subresources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unnecessary includes Created 5 years, 1 month 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 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 void didReceiveResponse(blink::WebLocalFrame* frame, 512 void didReceiveResponse(blink::WebLocalFrame* frame,
513 unsigned identifier, 513 unsigned identifier,
514 const blink::WebURLResponse& response) override; 514 const blink::WebURLResponse& response) override;
515 void didLoadResourceFromMemoryCache( 515 void didLoadResourceFromMemoryCache(
516 blink::WebLocalFrame* frame, 516 blink::WebLocalFrame* frame,
517 const blink::WebURLRequest& request, 517 const blink::WebURLRequest& request,
518 const blink::WebURLResponse& response) override; 518 const blink::WebURLResponse& response) override;
519 void didDisplayInsecureContent() override; 519 void didDisplayInsecureContent() override;
520 void didRunInsecureContent(const blink::WebSecurityOrigin& origin, 520 void didRunInsecureContent(const blink::WebSecurityOrigin& origin,
521 const blink::WebURL& target) override; 521 const blink::WebURL& target) override;
522 void didDisplayContentWithCertificateErrors(
523 const blink::WebURL& url,
524 const blink::WebCString& security_info) override;
jww 2015/11/20 01:25:08 Why are these WebCStrings instead of WebStrings? I
estark 2015/11/23 23:40:24 I was going off of other APIs that expose security
jww 2015/11/25 19:24:02 Nope, not really. Can you email chromium-dev or bl
525 void didRunContentWithCertificateErrors(
526 const blink::WebSecurityOrigin& origin,
527 const blink::WebURL& url,
528 const blink::WebCString& security_info) override;
522 void didChangePerformanceTiming() override; 529 void didChangePerformanceTiming() override;
523 void didAbortLoading(blink::WebLocalFrame* frame) override; 530 void didAbortLoading(blink::WebLocalFrame* frame) override;
524 void didCreateScriptContext(blink::WebLocalFrame* frame, 531 void didCreateScriptContext(blink::WebLocalFrame* frame,
525 v8::Local<v8::Context> context, 532 v8::Local<v8::Context> context,
526 int extension_group, 533 int extension_group,
527 int world_id) override; 534 int world_id) override;
528 void willReleaseScriptContext(blink::WebLocalFrame* frame, 535 void willReleaseScriptContext(blink::WebLocalFrame* frame,
529 v8::Local<v8::Context> context, 536 v8::Local<v8::Context> context,
530 int world_id) override; 537 int world_id) override;
531 void didChangeScrollOffset(blink::WebLocalFrame* frame) override; 538 void didChangeScrollOffset(blink::WebLocalFrame* frame) override;
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
1102 #endif 1109 #endif
1103 1110
1104 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1111 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1105 1112
1106 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1113 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1107 }; 1114 };
1108 1115
1109 } // namespace content 1116 } // namespace content
1110 1117
1111 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1118 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698