| 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 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef MixedContentChecker_h | 31 #ifndef MixedContentChecker_h |
| 32 #define MixedContentChecker_h | 32 #define MixedContentChecker_h |
| 33 | 33 |
| 34 #include "base/gtest_prod_util.h" | 34 #include "base/gtest_prod_util.h" |
| 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/loader/fetch/ResourceRequest.h" | 37 #include "platform/loader/fetch/ResourceRequest.h" |
| 38 #include "platform/weborigin/SecurityViolationReportingPolicy.h" | 38 #include "platform/weborigin/SecurityViolationReportingPolicy.h" |
| 39 #include "platform/wtf/text/WTFString.h" |
| 39 #include "public/platform/WebMixedContentContextType.h" | 40 #include "public/platform/WebMixedContentContextType.h" |
| 40 #include "public/platform/WebURLRequest.h" | 41 #include "public/platform/WebURLRequest.h" |
| 41 #include "wtf/text/WTFString.h" | |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class Frame; | 45 class Frame; |
| 46 class LocalFrame; | 46 class LocalFrame; |
| 47 class KURL; | 47 class KURL; |
| 48 class ResourceResponse; | 48 class ResourceResponse; |
| 49 class SecurityOrigin; | 49 class SecurityOrigin; |
| 50 class SourceLocation; | 50 class SourceLocation; |
| 51 | 51 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 static void LogToConsoleAboutWebSocket(LocalFrame*, | 133 static void LogToConsoleAboutWebSocket(LocalFrame*, |
| 134 const KURL&, | 134 const KURL&, |
| 135 const KURL&, | 135 const KURL&, |
| 136 bool allowed); | 136 bool allowed); |
| 137 static void Count(Frame*, WebURLRequest::RequestContext); | 137 static void Count(Frame*, WebURLRequest::RequestContext); |
| 138 }; | 138 }; |
| 139 | 139 |
| 140 } // namespace blink | 140 } // namespace blink |
| 141 | 141 |
| 142 #endif // MixedContentChecker_h | 142 #endif // MixedContentChecker_h |
| OLD | NEW |