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 #include "base/mac/mac_logging.h" | 5 #include "base/mac/mac_logging.h" |
6 | 6 |
| 7 #include <iomanip> |
| 8 |
| 9 #if !defined(OS_IOS) |
7 #include <CoreServices/CoreServices.h> | 10 #include <CoreServices/CoreServices.h> |
8 | 11 #endif |
9 #include <iomanip> | |
10 | 12 |
11 namespace logging { | 13 namespace logging { |
12 | 14 |
13 OSStatusLogMessage::OSStatusLogMessage(const char* file_path, | 15 OSStatusLogMessage::OSStatusLogMessage(const char* file_path, |
14 int line, | 16 int line, |
15 LogSeverity severity, | 17 LogSeverity severity, |
16 OSStatus status) | 18 OSStatus status) |
17 : LogMessage(file_path, line, severity), | 19 : LogMessage(file_path, line, severity), |
18 status_(status) { | 20 status_(status) { |
19 } | 21 } |
20 | 22 |
21 OSStatusLogMessage::~OSStatusLogMessage() { | 23 OSStatusLogMessage::~OSStatusLogMessage() { |
| 24 #if defined(OS_IOS) |
| 25 // TODO(ios): Consider using NSError with NSOSStatusErrorDomain to try to |
| 26 // get a description of the failure. |
| 27 stream() << ": " << status_; |
| 28 #else |
22 stream() << ": " | 29 stream() << ": " |
23 << GetMacOSStatusErrorString(status_) | 30 << GetMacOSStatusErrorString(status_) |
24 << " (" | 31 << " (" |
25 << status_ | 32 << status_ |
26 << ")"; | 33 << ")"; |
| 34 #endif |
27 } | 35 } |
28 | 36 |
29 } // namespace logging | 37 } // namespace logging |
OLD | NEW |