Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(551)

Side by Side Diff: sync/notifier/object_id_payload_map.h

Issue 10702074: Refactor sync-specific parts out of SyncNotifier/SyncNotifierObserver (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef SYNC_NOTIFIER_OBJECT_ID_PAYLOAD_MAP_H_
6 #define SYNC_NOTIFIER_OBJECT_ID_PAYLOAD_MAP_H_
7
8 #include <map>
9 #include <string>
10
11 #include "google/cacheinvalidation/include/types.h"
12 #include "sync/notifier/invalidation_util.h"
13
14 namespace syncer {
15
16 typedef std::map<invalidation::ObjectId,
17 std::string,
18 ObjectIdLessThan> ObjectIdPayloadMap;
19
20 } // namespace syncer
21
22 #endif // HOME_DCHENG_SRC_CHROMIUM_SRC_SYNC_NOTIFIER_OBJECT_ID_PAYLOAD_MAP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698