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

Side by Side Diff: sync/syncable/model_type.cc

Issue 10696087: [Sync] Move ModelType and related classes to 'syncer' namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort headers, update copyrights 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
« no previous file with comments | « sync/syncable/entry_kernel.cc ('k') | sync/syncable/model_type_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "sync/internal_api/public/base/model_type.h" 5 #include "sync/internal_api/public/base/model_type.h"
6 6
7 #include "base/string_split.h" 7 #include "base/string_split.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "sync/engine/syncproto.h" 9 #include "sync/engine/syncproto.h"
10 #include "sync/protocol/app_notification_specifics.pb.h" 10 #include "sync/protocol/app_notification_specifics.pb.h"
11 #include "sync/protocol/app_setting_specifics.pb.h" 11 #include "sync/protocol/app_setting_specifics.pb.h"
12 #include "sync/protocol/app_specifics.pb.h" 12 #include "sync/protocol/app_specifics.pb.h"
13 #include "sync/protocol/autofill_specifics.pb.h" 13 #include "sync/protocol/autofill_specifics.pb.h"
14 #include "sync/protocol/bookmark_specifics.pb.h" 14 #include "sync/protocol/bookmark_specifics.pb.h"
15 #include "sync/protocol/extension_setting_specifics.pb.h" 15 #include "sync/protocol/extension_setting_specifics.pb.h"
16 #include "sync/protocol/extension_specifics.pb.h" 16 #include "sync/protocol/extension_specifics.pb.h"
17 #include "sync/protocol/nigori_specifics.pb.h" 17 #include "sync/protocol/nigori_specifics.pb.h"
18 #include "sync/protocol/password_specifics.pb.h" 18 #include "sync/protocol/password_specifics.pb.h"
19 #include "sync/protocol/preference_specifics.pb.h" 19 #include "sync/protocol/preference_specifics.pb.h"
20 #include "sync/protocol/search_engine_specifics.pb.h" 20 #include "sync/protocol/search_engine_specifics.pb.h"
21 #include "sync/protocol/session_specifics.pb.h" 21 #include "sync/protocol/session_specifics.pb.h"
22 #include "sync/protocol/sync.pb.h" 22 #include "sync/protocol/sync.pb.h"
23 #include "sync/protocol/theme_specifics.pb.h" 23 #include "sync/protocol/theme_specifics.pb.h"
24 #include "sync/protocol/typed_url_specifics.pb.h" 24 #include "sync/protocol/typed_url_specifics.pb.h"
25 25
26 namespace syncer { 26 namespace syncer {
27 namespace syncable {
28 27
29 void AddDefaultFieldValue(syncable::ModelType datatype, 28 void AddDefaultFieldValue(ModelType datatype,
30 sync_pb::EntitySpecifics* specifics) { 29 sync_pb::EntitySpecifics* specifics) {
31 switch (datatype) { 30 switch (datatype) {
32 case BOOKMARKS: 31 case BOOKMARKS:
33 specifics->mutable_bookmark(); 32 specifics->mutable_bookmark();
34 break; 33 break;
35 case PASSWORDS: 34 case PASSWORDS:
36 specifics->mutable_password(); 35 specifics->mutable_password();
37 break; 36 break;
38 case PREFERENCES: 37 case PREFERENCES:
39 specifics->mutable_preference(); 38 specifics->mutable_preference();
40 break; 39 break;
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 case APP_NOTIFICATIONS: 268 case APP_NOTIFICATIONS:
270 return "App Notifications"; 269 return "App Notifications";
271 default: 270 default:
272 break; 271 break;
273 } 272 }
274 NOTREACHED() << "No known extension for model type."; 273 NOTREACHED() << "No known extension for model type.";
275 return "INVALID"; 274 return "INVALID";
276 } 275 }
277 276
278 StringValue* ModelTypeToValue(ModelType model_type) { 277 StringValue* ModelTypeToValue(ModelType model_type) {
279 if (model_type >= syncable::FIRST_REAL_MODEL_TYPE) { 278 if (model_type >= FIRST_REAL_MODEL_TYPE) {
280 return Value::CreateStringValue(ModelTypeToString(model_type)); 279 return Value::CreateStringValue(ModelTypeToString(model_type));
281 } else if (model_type == syncable::TOP_LEVEL_FOLDER) { 280 } else if (model_type == TOP_LEVEL_FOLDER) {
282 return Value::CreateStringValue("Top-level folder"); 281 return Value::CreateStringValue("Top-level folder");
283 } else if (model_type == syncable::UNSPECIFIED) { 282 } else if (model_type == UNSPECIFIED) {
284 return Value::CreateStringValue("Unspecified"); 283 return Value::CreateStringValue("Unspecified");
285 } 284 }
286 NOTREACHED(); 285 NOTREACHED();
287 return Value::CreateStringValue(""); 286 return Value::CreateStringValue("");
288 } 287 }
289 288
290 ModelType ModelTypeFromValue(const Value& value) { 289 ModelType ModelTypeFromValue(const Value& value) {
291 if (value.IsType(Value::TYPE_STRING)) { 290 if (value.IsType(Value::TYPE_STRING)) {
292 std::string result; 291 std::string result;
293 CHECK(value.GetAsString(&result)); 292 CHECK(value.GetAsString(&result));
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
533 } else { 532 } else {
534 *model_type = UNSPECIFIED; 533 *model_type = UNSPECIFIED;
535 return false; 534 return false;
536 } 535 }
537 } 536 }
538 537
539 bool IsRealDataType(ModelType model_type) { 538 bool IsRealDataType(ModelType model_type) {
540 return model_type >= FIRST_REAL_MODEL_TYPE && model_type < MODEL_TYPE_COUNT; 539 return model_type >= FIRST_REAL_MODEL_TYPE && model_type < MODEL_TYPE_COUNT;
541 } 540 }
542 541
543 } // namespace syncable
544 } // namespace syncer 542 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/syncable/entry_kernel.cc ('k') | sync/syncable/model_type_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698