Chromium Code Reviews| 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 // Keep this file in sync with the .proto files in this directory. | 5 // Keep this file in sync with the .proto files in this directory. |
| 6 | 6 |
| 7 #include "chrome/browser/sync/protocol/proto_value_conversions.h" | 7 #include "sync/protocol/proto_value_conversions.h" |
| 8 | 8 |
| 9 #include "base/base64.h" | 9 #include "base/base64.h" |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/string_number_conversions.h" | 12 #include "base/string_number_conversions.h" |
| 13 #include "base/values.h" | 13 #include "base/values.h" |
| 14 #include "chrome/browser/sync/protocol/proto_enum_conversions.h" | |
| 15 #include "sync/protocol/app_notification_specifics.pb.h" | 14 #include "sync/protocol/app_notification_specifics.pb.h" |
| 16 #include "sync/protocol/app_setting_specifics.pb.h" | 15 #include "sync/protocol/app_setting_specifics.pb.h" |
| 17 #include "sync/protocol/app_specifics.pb.h" | 16 #include "sync/protocol/app_specifics.pb.h" |
| 18 #include "sync/protocol/autofill_specifics.pb.h" | 17 #include "sync/protocol/autofill_specifics.pb.h" |
| 19 #include "sync/protocol/bookmark_specifics.pb.h" | 18 #include "sync/protocol/bookmark_specifics.pb.h" |
| 20 #include "sync/protocol/encryption.pb.h" | 19 #include "sync/protocol/encryption.pb.h" |
| 21 #include "sync/protocol/extension_setting_specifics.pb.h" | 20 #include "sync/protocol/extension_setting_specifics.pb.h" |
| 22 #include "sync/protocol/extension_specifics.pb.h" | 21 #include "sync/protocol/extension_specifics.pb.h" |
| 23 #include "sync/protocol/nigori_specifics.pb.h" | 22 #include "sync/protocol/nigori_specifics.pb.h" |
| 24 #include "sync/protocol/password_specifics.pb.h" | 23 #include "sync/protocol/password_specifics.pb.h" |
| 25 #include "sync/protocol/preference_specifics.pb.h" | 24 #include "sync/protocol/preference_specifics.pb.h" |
| 25 #include "sync/protocol/proto_enum_conversions.h" | |
|
tim (not reviewing)
2012/03/15 06:21:10
script fail!!
Well, I guess it's garbage-in-garba
akalin
2012/03/15 07:38:26
wait...I don't see what's wrong? I'll submit anyw
| |
| 26 #include "sync/protocol/search_engine_specifics.pb.h" | 26 #include "sync/protocol/search_engine_specifics.pb.h" |
| 27 #include "sync/protocol/session_specifics.pb.h" | 27 #include "sync/protocol/session_specifics.pb.h" |
| 28 #include "sync/protocol/sync.pb.h" | 28 #include "sync/protocol/sync.pb.h" |
| 29 #include "sync/protocol/theme_specifics.pb.h" | 29 #include "sync/protocol/theme_specifics.pb.h" |
| 30 #include "sync/protocol/typed_url_specifics.pb.h" | 30 #include "sync/protocol/typed_url_specifics.pb.h" |
| 31 | 31 |
| 32 namespace browser_sync { | 32 namespace browser_sync { |
| 33 | 33 |
| 34 namespace { | 34 namespace { |
| 35 | 35 |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 404 #undef SET_BYTES | 404 #undef SET_BYTES |
| 405 #undef SET_INT32 | 405 #undef SET_INT32 |
| 406 #undef SET_INT64 | 406 #undef SET_INT64 |
| 407 #undef SET_INT64_REP | 407 #undef SET_INT64_REP |
| 408 #undef SET_STR | 408 #undef SET_STR |
| 409 #undef SET_STR_REP | 409 #undef SET_STR_REP |
| 410 | 410 |
| 411 #undef SET_FIELD | 411 #undef SET_FIELD |
| 412 | 412 |
| 413 } // namespace browser_sync | 413 } // namespace browser_sync |
| OLD | NEW |