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

Unified Diff: cc/base/tiling_data.h

Issue 13051003: cpplint.py pass on cc/(base|debug|quads|resources)/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix prioritized_resource_unittest Created 7 years, 9 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 | « cc/base/scoped_ptr_vector.h ('k') | cc/base/tiling_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/base/tiling_data.h
diff --git a/cc/base/tiling_data.h b/cc/base/tiling_data.h
index fc71409e4bf0ea53e59f9b594af002f39aa6bb8c..3bf9809579fb9738580ebc8ddc64c2603b65fc89 100644
--- a/cc/base/tiling_data.h
+++ b/cc/base/tiling_data.h
@@ -5,6 +5,8 @@
#ifndef CC_BASE_TILING_DATA_H_
#define CC_BASE_TILING_DATA_H_
+#include <utility>
+
#include "base/basictypes.h"
#include "base/logging.h"
#include "cc/base/cc_export.h"
@@ -74,7 +76,10 @@ class CC_EXPORT TilingData {
protected:
explicit BaseIterator(const TilingData* tiling_data);
- void done() { index_x_ = -1; index_y_ = -1; }
+ void done() {
+ index_x_ = -1;
+ index_y_ = -1;
+ }
const TilingData* tiling_data_;
int index_x_;
« no previous file with comments | « cc/base/scoped_ptr_vector.h ('k') | cc/base/tiling_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698