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

Side by Side Diff: third_party/WebKit/Source/core/loader/MixedContentChecker.h

Issue 1905033002: PlzNavigate: Move navigation-level mixed content checks to the browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@console-security-message
Patch Set: Rebase after 3 spin off CLs landed. Created 4 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 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 29 matching lines...) Expand all
40 #include "wtf/text/WTFString.h" 40 #include "wtf/text/WTFString.h"
41 41
42 namespace blink { 42 namespace blink {
43 43
44 class Frame; 44 class Frame;
45 class LocalFrame; 45 class LocalFrame;
46 class KURL; 46 class KURL;
47 class ResourceResponse; 47 class ResourceResponse;
48 class SecurityOrigin; 48 class SecurityOrigin;
49 49
50 // Checks all sub-resource loads for mixed-content. Frame-level loads are
51 // checked at the browser by MixedContentNavigationThrottle. Changes to this
52 // class might need to be reflected on its browser counterpart.
53 //
54 // Current mixed content draft that drives this implementation:
55 // https://w3c.github.io/webappsec-mixed-content/
50 class CORE_EXPORT MixedContentChecker final { 56 class CORE_EXPORT MixedContentChecker final {
51 WTF_MAKE_NONCOPYABLE(MixedContentChecker); 57 WTF_MAKE_NONCOPYABLE(MixedContentChecker);
52 DISALLOW_NEW(); 58 DISALLOW_NEW();
53 59
54 public: 60 public:
55 enum ReportingStatus { SendReport, SuppressReport }; 61 enum ReportingStatus { SendReport, SuppressReport };
56 static bool shouldBlockFetch(LocalFrame*, 62 static bool shouldBlockFetch(LocalFrame*,
57 WebURLRequest::RequestContext, 63 WebURLRequest::RequestContext,
58 WebURLRequest::FrameType, 64 WebURLRequest::FrameType,
59 ResourceRequest::RedirectStatus, 65 ResourceRequest::RedirectStatus,
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 static void logToConsoleAboutWebSocket(LocalFrame*, 115 static void logToConsoleAboutWebSocket(LocalFrame*,
110 const KURL&, 116 const KURL&,
111 const KURL&, 117 const KURL&,
112 bool allowed); 118 bool allowed);
113 static void count(Frame*, WebURLRequest::RequestContext); 119 static void count(Frame*, WebURLRequest::RequestContext);
114 }; 120 };
115 121
116 } // namespace blink 122 } // namespace blink
117 123
118 #endif // MixedContentChecker_h 124 #endif // MixedContentChecker_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698