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

Side by Side Diff: third_party/WebKit/public/platform/WebURLResponse.h

Issue 2329153002: Remove the WARNING security level.
Patch Set: Restore top control test for sub.originalwebsite.com (but with ERROR instead of WARNING). Created 4 years, 3 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
« no previous file with comments | « third_party/WebKit/Source/platform/network/ResourceResponse.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 public: 50 public:
51 enum HTTPVersion { HTTPVersionUnknown, 51 enum HTTPVersion { HTTPVersionUnknown,
52 HTTPVersion_0_9, 52 HTTPVersion_0_9,
53 HTTPVersion_1_0, 53 HTTPVersion_1_0,
54 HTTPVersion_1_1, 54 HTTPVersion_1_1,
55 HTTPVersion_2_0 }; 55 HTTPVersion_2_0 };
56 enum SecurityStyle { 56 enum SecurityStyle {
57 SecurityStyleUnknown, 57 SecurityStyleUnknown,
58 SecurityStyleUnauthenticated, 58 SecurityStyleUnauthenticated,
59 SecurityStyleAuthenticationBroken, 59 SecurityStyleAuthenticationBroken,
60 SecurityStyleWarning,
61 SecurityStyleAuthenticated 60 SecurityStyleAuthenticated
62 }; 61 };
63 62
64 struct SignedCertificateTimestamp { 63 struct SignedCertificateTimestamp {
65 SignedCertificateTimestamp() {} 64 SignedCertificateTimestamp() {}
66 SignedCertificateTimestamp( 65 SignedCertificateTimestamp(
67 WebString status, 66 WebString status,
68 WebString origin, 67 WebString origin,
69 WebString logDescription, 68 WebString logDescription,
70 WebString logId, 69 WebString logId,
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 // instance it contains. 322 // instance it contains.
324 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse; 323 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse;
325 324
326 // Should never be null. 325 // Should never be null.
327 ResourceResponse* m_resourceResponse; 326 ResourceResponse* m_resourceResponse;
328 }; 327 };
329 328
330 } // namespace blink 329 } // namespace blink
331 330
332 #endif 331 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/network/ResourceResponse.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698