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 27 matching lines...) Expand all Loading... |
46 syncable::ModelType type); | 47 syncable::ModelType type); |
47 | 48 |
48 // Whether this is a valid error or not. | 49 // Whether this is a valid error or not. |
49 bool IsSet() const; | 50 bool IsSet() const; |
50 | 51 |
51 // These must only be called if IsSet() is true. | 52 // These must only be called if IsSet() is true. |
52 const tracked_objects::Location& location() const; | 53 const tracked_objects::Location& location() const; |
53 const std::string& message() const; | 54 const std::string& message() const; |
54 syncable::ModelType type() const; | 55 syncable::ModelType type() const; |
55 | 56 |
| 57 std::string ToString() const; |
| 58 |
56 private: | 59 private: |
57 // Print error information to log. | 60 // Print error information to log. |
58 void PrintLogError() const; | 61 void PrintLogError() const; |
59 | 62 |
60 // Make a copy of a SyncError. If other.IsSet() == false, this->IsSet() will | 63 // Make a copy of a SyncError. If other.IsSet() == false, this->IsSet() will |
61 // now return false. | 64 // now return false. |
62 void Copy(const SyncError& other); | 65 void Copy(const SyncError& other); |
63 | 66 |
64 // Initialize the local error data with the specified error data. After this | 67 // Initialize the local error data with the specified error data. After this |
65 // is called, IsSet() will return true. | 68 // is called, IsSet() will return true. |
66 void Init(const tracked_objects::Location& location, | 69 void Init(const tracked_objects::Location& location, |
67 const std::string& message, | 70 const std::string& message, |
68 syncable::ModelType type); | 71 syncable::ModelType type); |
69 | 72 |
70 // Reset the error to it's default (unset) values. | 73 // Reset the error to it's default (unset) values. |
71 void Clear(); | 74 void Clear(); |
72 | 75 |
73 // scoped_ptr is necessary because Location objects aren't assignable. | 76 // scoped_ptr is necessary because Location objects aren't assignable. |
74 scoped_ptr<tracked_objects::Location> location_; | 77 scoped_ptr<tracked_objects::Location> location_; |
75 std::string message_; | 78 std::string message_; |
76 syncable::ModelType type_; | 79 syncable::ModelType type_; |
77 }; | 80 }; |
78 | 81 |
| 82 // gmock printer helper. |
| 83 void PrintTo(const SyncError& sync_error, std::ostream* os); |
| 84 |
79 #endif // CHROME_BROWSER_SYNC_API_SYNC_ERROR_H_ | 85 #endif // CHROME_BROWSER_SYNC_API_SYNC_ERROR_H_ |
OLD | NEW |