OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef SYNC_SYNCABLE_BLOB_H_ | 5 #ifndef SYNC_SYNCABLE_BLOB_H_ |
6 #define SYNC_SYNCABLE_BLOB_H_ | 6 #define SYNC_SYNCABLE_BLOB_H_ |
7 #pragma once | |
8 | 7 |
9 #include <vector> | 8 #include <vector> |
10 | 9 |
11 #include "base/basictypes.h" // For uint8. | 10 #include "base/basictypes.h" // For uint8. |
12 | 11 |
13 namespace syncer { | 12 namespace syncer { |
14 namespace syncable { | 13 namespace syncable { |
15 | 14 |
16 typedef std::vector<uint8> Blob; | 15 typedef std::vector<uint8> Blob; |
17 | 16 |
18 } // namespace syncable | 17 } // namespace syncable |
19 } // namespace syncer | 18 } // namespace syncer |
20 | 19 |
21 #endif // SYNC_SYNCABLE_BLOB_H_ | 20 #endif // SYNC_SYNCABLE_BLOB_H_ |
OLD | NEW |