OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "chrome/browser/sync/test/integration/profile_sync_service_harness.h" | 5 #include "chrome/browser/sync/test/integration/profile_sync_service_harness.h" |
6 | 6 |
7 #include <cstddef> | 7 #include <cstddef> |
8 #include <iterator> | 8 #include <iterator> |
9 #include <ostream> | 9 #include <ostream> |
10 #include <sstream> | 10 #include <sstream> |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 } | 462 } |
463 | 463 |
464 bool ProfileSyncServiceHarness::IsTypePreferred(syncer::ModelType type) { | 464 bool ProfileSyncServiceHarness::IsTypePreferred(syncer::ModelType type) { |
465 return service()->GetPreferredDataTypes().Has(type); | 465 return service()->GetPreferredDataTypes().Has(type); |
466 } | 466 } |
467 | 467 |
468 std::string ProfileSyncServiceHarness::GetServiceStatus() { | 468 std::string ProfileSyncServiceHarness::GetServiceStatus() { |
469 scoped_ptr<base::DictionaryValue> value( | 469 scoped_ptr<base::DictionaryValue> value( |
470 sync_ui_util::ConstructAboutInformation(service())); | 470 sync_ui_util::ConstructAboutInformation(service())); |
471 std::string service_status; | 471 std::string service_status; |
472 base::JSONWriter::WriteWithOptions(value.get(), | 472 base::JSONWriter::WriteWithOptions( |
473 base::JSONWriter::OPTIONS_PRETTY_PRINT, | 473 *value, base::JSONWriter::OPTIONS_PRETTY_PRINT, &service_status); |
474 &service_status); | |
475 return service_status; | 474 return service_status; |
476 } | 475 } |
OLD | NEW |