Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: base/mac/mac_logging.cc

Issue 10698149: Add minimal support for process_utils on iOS (Closed) Base URL: http://git.chromium.org/chromium/src.git@all-ios-tweak
Patch Set: Address review comments Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
OLDNEW
« base/mac/foundation_util.mm ('K') | « base/mac/mac_logging.h ('k') | base/process_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698