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