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

Unified Diff: net/base/crl_set.cc

Issue 11087021: Cleanup: IWYU for base/time.h. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/crl_set.h ('k') | remoting/base/running_average.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/crl_set.cc
===================================================================
--- net/base/crl_set.cc (revision 160754)
+++ net/base/crl_set.cc (working copy)
@@ -9,6 +9,7 @@
#include "base/stl_util.h"
#include "base/string_util.h"
#include "base/stringprintf.h"
+#include "base/time.h"
#include "base/values.h"
#include "crypto/sha2.h"
#include "net/base/crl_set.h"
@@ -71,8 +72,8 @@
// header_bytes consists of a JSON dictionary with the following keys:
// Version (int): currently 0
// ContentType (string): "CRLSet" or "CRLSetDelta" (magic value)
-// DeltaFrom (int32): if this is a delta update (see below), then this contains
-// the sequence number of the base CRLSet.
+// DeltaFrom (int32): if this is a delta update (see below), then this
+// contains the sequence number of the base CRLSet.
// Sequence (int32): the monotonic sequence number of this CRL set.
//
// A delta CRLSet is similar to a CRLSet:
@@ -441,7 +442,7 @@
// static
bool CRLSet::GetIsDeltaUpdate(const base::StringPiece& in_data,
- bool *is_delta) {
+ bool* is_delta) {
base::StringPiece data(in_data);
scoped_ptr<base::DictionaryValue> header_dict(ReadHeader(&data));
if (!header_dict.get())
« no previous file with comments | « net/base/crl_set.h ('k') | remoting/base/running_average.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698