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

Side by Side Diff: net/cert/crl_set_storage.cc

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 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 | « net/cert/client_cert_verifier.h ('k') | net/cert/ct_log_response_parser_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "net/cert/crl_set_storage.h" 5 #include "net/cert/crl_set_storage.h"
6 6
7 #include "base/base64.h" 7 #include "base/base64.h"
8 #include "base/format_macros.h" 8 #include "base/format_macros.h"
9 #include "base/json/json_reader.h" 9 #include "base/json/json_reader.h"
10 #include "base/memory/scoped_ptr.h"
10 #include "base/numerics/safe_conversions.h" 11 #include "base/numerics/safe_conversions.h"
11 #include "base/strings/stringprintf.h" 12 #include "base/strings/stringprintf.h"
12 #include "base/trace_event/trace_event.h" 13 #include "base/trace_event/trace_event.h"
13 #include "base/values.h" 14 #include "base/values.h"
14 #include "crypto/sha2.h" 15 #include "crypto/sha2.h"
15 #include "third_party/zlib/zlib.h" 16 #include "third_party/zlib/zlib.h"
16 17
17 namespace net { 18 namespace net {
18 19
19 // Decompress zlib decompressed |in| into |out|. |out_len| is the number of 20 // Decompress zlib decompressed |in| into |out|. |out_len| is the number of
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 memcpy(out + off, j->data(), j->size()); 544 memcpy(out + off, j->data(), j->size());
544 off += j->size(); 545 off += j->size();
545 } 546 }
546 } 547 }
547 548
548 CHECK_EQ(off, len); 549 CHECK_EQ(off, len);
549 return ret; 550 return ret;
550 } 551 }
551 552
552 } // namespace net 553 } // namespace net
OLDNEW
« no previous file with comments | « net/cert/client_cert_verifier.h ('k') | net/cert/ct_log_response_parser_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698