| Index: cc/layers/layer_settings.cc
|
| diff --git a/cc/base/resource_id.h b/cc/layers/layer_settings.cc
|
| similarity index 57%
|
| copy from cc/base/resource_id.h
|
| copy to cc/layers/layer_settings.cc
|
| index 84d00ad8e592b8c10310a8e31b26cf0f93e886b5..a608bdbe3fb8f1e5c9878e1865653d85019aee0c 100644
|
| --- a/cc/base/resource_id.h
|
| +++ b/cc/layers/layer_settings.cc
|
| @@ -2,15 +2,12 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CC_BASE_RESOURCE_ID_H_
|
| -#define CC_BASE_RESOURCE_ID_H_
|
| -
|
| -#include <stdint.h>
|
| +#include "cc/layers/layer_settings.h"
|
|
|
| namespace cc {
|
|
|
| -using ResourceId = uint32_t;
|
| +LayerSettings::LayerSettings() : use_compositor_animation_timelines(false) {}
|
|
|
| -} // namespace cc
|
| +LayerSettings::~LayerSettings() {}
|
|
|
| -#endif // CC_BASE_RESOURCE_ID_H_
|
| +} // namespace cc
|
|
|