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

Unified Diff: chrome/browser/safe_browsing/prefix_set.h

Issue 313073002: Clean-up coding style (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
Index: chrome/browser/safe_browsing/prefix_set.h
diff --git a/chrome/browser/safe_browsing/prefix_set.h b/chrome/browser/safe_browsing/prefix_set.h
index a71ce3ba94dc232db57a1b1dce4389cbad0500a5..7fbf9b49af80ffd7b74e538b862a15e7312542ad 100644
--- a/chrome/browser/safe_browsing/prefix_set.h
+++ b/chrome/browser/safe_browsing/prefix_set.h
@@ -49,6 +49,7 @@
#ifndef CHROME_BROWSER_SAFE_BROWSING_PREFIX_SET_H_
#define CHROME_BROWSER_SAFE_BROWSING_PREFIX_SET_H_
+#include <utility>
#include <vector>
#include "base/gtest_prod_util.h"
@@ -103,7 +104,7 @@ class PrefixSet {
static const size_t kMaxRun = 100;
// Helpers to make |index_| easier to deal with.
- typedef std::pair<SBPrefix,uint32> IndexPair;
+ typedef std::pair<SBPrefix, uint32> IndexPair;
typedef std::vector<IndexPair> IndexVector;
static bool PrefixLess(const IndexPair& a, const IndexPair& b);

Powered by Google App Engine
This is Rietveld 408576698