| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_SYNC_API_SYNC_ERROR_H_ | 5 #ifndef CHROME_BROWSER_SYNC_API_SYNC_ERROR_H_ |
| 6 #define CHROME_BROWSER_SYNC_API_SYNC_ERROR_H_ | 6 #define CHROME_BROWSER_SYNC_API_SYNC_ERROR_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <iosfwd> |
| 9 #include <string> | 10 #include <string> |
| 10 | 11 |
| 11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 12 #include "chrome/browser/sync/syncable/model_type.h" | 13 #include "chrome/browser/sync/syncable/model_type.h" |
| 13 | 14 |
| 14 namespace tracked_objects { | 15 namespace tracked_objects { |
| 15 class Location; | 16 class Location; |
| 16 } // namespace tracked_objects | 17 } // namespace tracked_objects |
| 17 | 18 |
| 18 // Sync errors are used for debug purposes and handled internally and/or | 19 // Sync errors are used for debug purposes and handled internally and/or |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 70 |
| 70 // Reset the error to it's default (unset) values. | 71 // Reset the error to it's default (unset) values. |
| 71 void Clear(); | 72 void Clear(); |
| 72 | 73 |
| 73 // scoped_ptr is necessary because Location objects aren't assignable. | 74 // scoped_ptr is necessary because Location objects aren't assignable. |
| 74 scoped_ptr<tracked_objects::Location> location_; | 75 scoped_ptr<tracked_objects::Location> location_; |
| 75 std::string message_; | 76 std::string message_; |
| 76 syncable::ModelType type_; | 77 syncable::ModelType type_; |
| 77 }; | 78 }; |
| 78 | 79 |
| 80 // Printing operator - helps gtest produce readable error messages. |
| 81 std::ostream& operator<<(std::ostream& os, const SyncError& sync_error); |
| 82 |
| 79 #endif // CHROME_BROWSER_SYNC_API_SYNC_ERROR_H_ | 83 #endif // CHROME_BROWSER_SYNC_API_SYNC_ERROR_H_ |
| OLD | NEW |