| Index: components/sync/base/immutable.h
|
| diff --git a/components/sync/base/immutable.h b/components/sync/base/immutable.h
|
| index 7b2ed1053a74112e52f742fd2151eab2b3843f9f..9d435ad2e180cdd251319392ea7d9223aaaf77d4 100644
|
| --- a/components/sync/base/immutable.h
|
| +++ b/components/sync/base/immutable.h
|
| @@ -2,6 +2,14 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#ifndef COMPONENTS_SYNC_BASE_IMMUTABLE_H_
|
| +#define COMPONENTS_SYNC_BASE_IMMUTABLE_H_
|
| +
|
| +#include <utility>
|
| +
|
| +#include "base/macros.h"
|
| +#include "base/memory/ref_counted.h"
|
| +
|
| // Immutable<T> provides an easy, cheap, and thread-safe way to pass
|
| // large immutable data around.
|
| //
|
| @@ -61,14 +69,6 @@
|
| // with forward-declared types. See comments on traits below for
|
| // details.
|
|
|
| -#ifndef COMPONENTS_SYNC_BASE_IMMUTABLE_H_
|
| -#define COMPONENTS_SYNC_BASE_IMMUTABLE_H_
|
| -
|
| -#include <utility>
|
| -
|
| -#include "base/macros.h"
|
| -#include "base/memory/ref_counted.h"
|
| -
|
| namespace syncer {
|
|
|
| namespace internal {
|
|
|