| OLD | NEW |
| 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 24 matching lines...) Expand all Loading... |
| 35 #include "core/CoreExport.h" | 35 #include "core/CoreExport.h" |
| 36 #include "platform/heap/Handle.h" | 36 #include "platform/heap/Handle.h" |
| 37 #include "platform/network/ResourceRequest.h" | 37 #include "platform/network/ResourceRequest.h" |
| 38 #include "public/platform/WebMixedContent.h" | 38 #include "public/platform/WebMixedContent.h" |
| 39 #include "public/platform/WebURLRequest.h" | 39 #include "public/platform/WebURLRequest.h" |
| 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 FrameLoaderClient; | |
| 46 class LocalFrame; | 45 class LocalFrame; |
| 47 class KURL; | 46 class KURL; |
| 48 class ResourceResponse; | 47 class ResourceResponse; |
| 49 class SecurityOrigin; | 48 class SecurityOrigin; |
| 50 | 49 |
| 51 class CORE_EXPORT MixedContentChecker final { | 50 class CORE_EXPORT MixedContentChecker final { |
| 52 WTF_MAKE_NONCOPYABLE(MixedContentChecker); | 51 WTF_MAKE_NONCOPYABLE(MixedContentChecker); |
| 53 DISALLOW_NEW(); | 52 DISALLOW_NEW(); |
| 54 | 53 |
| 55 public: | 54 public: |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 static void logToConsoleAboutWebSocket(LocalFrame*, | 109 static void logToConsoleAboutWebSocket(LocalFrame*, |
| 111 const KURL&, | 110 const KURL&, |
| 112 const KURL&, | 111 const KURL&, |
| 113 bool allowed); | 112 bool allowed); |
| 114 static void count(Frame*, WebURLRequest::RequestContext); | 113 static void count(Frame*, WebURLRequest::RequestContext); |
| 115 }; | 114 }; |
| 116 | 115 |
| 117 } // namespace blink | 116 } // namespace blink |
| 118 | 117 |
| 119 #endif // MixedContentChecker_h | 118 #endif // MixedContentChecker_h |
| OLD | NEW |