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

Unified Diff: cc/base/util.h

Issue 19925003: WIP - command line experiment Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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/switches.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/base/util.h
diff --git a/cc/base/util.h b/cc/base/util.h
index 1d716ae2a42f4b4d25f1bf38e6fb38a4a9c806a3..e83979bfa6f82ca49e2adcad728b2d9338d651ce 100644
--- a/cc/base/util.h
+++ b/cc/base/util.h
@@ -8,9 +8,12 @@
#include <limits>
#include "base/basictypes.h"
+#include "cc/base/cc_export.h"
namespace cc {
+CC_EXPORT bool IsImplSidePaintingEnabled();
+
template <typename T> T RoundUp(T n, T mul) {
COMPILE_ASSERT(std::numeric_limits<T>::is_integer, type_must_be_integral);
return (n > 0) ? ((n + mul - 1) / mul) * mul
« no previous file with comments | « cc/base/switches.cc ('k') | chrome/common/chrome_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698