| 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
|
|
|