| Index: cc/output/context_provider.cc
|
| diff --git a/cc/output/context_provider.cc b/cc/output/context_provider.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..23a8e2c8fd33c50062f873ccef75a7ed2e8e7ab0
|
| --- /dev/null
|
| +++ b/cc/output/context_provider.cc
|
| @@ -0,0 +1,14 @@
|
| +// Copyright 2013 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.
|
| +
|
| +#include "cc/output/context_provider.h"
|
| +
|
| +#include <limits>
|
| +
|
| +namespace cc {
|
| +
|
| +ContextProvider::Capabilities::Capabilities()
|
| + : max_transfer_buffer_usage_bytes(std::numeric_limits<size_t>::max()) {}
|
| +
|
| +} // namespace cc
|
|
|