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

Unified Diff: cc/util.h

Issue 12472028: Part 1 of cc/ directory shuffles: base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: cc/util.h
diff --git a/cc/util.h b/cc/util.h
deleted file mode 100644
index 9ec3ff3304e61aa31c4dcf88b723539c73a8e908..0000000000000000000000000000000000000000
--- a/cc/util.h
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CC_UTIL_H_
-#define CC_UTIL_H_
-
-namespace cc {
-
-template <typename T> T RoundUp(T n, T mul) {
- return ((n + mul - 1) / mul) * mul;
-}
-
-} // namespace cc
-
-#endif // CC_UTIL_H_
« cc/cc.gyp ('K') | « cc/tree_synchronizer.h ('k') | cc/video_frame_provider_client_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698