| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/logging.h" | 5 #include "base/logging.h" |
| 6 #include "base/mac/bundle_locations.h" | 6 #include "base/mac/bundle_locations.h" |
| 7 #include "base/mac/mac_util.h" | 7 #include "base/mac/mac_util.h" |
| 8 #include "base/string_util.h" | 8 #include "base/strings/string_util.h" |
| 9 #include "base/strings/sys_string_conversions.h" | 9 #include "base/strings/sys_string_conversions.h" |
| 10 #include "base/time.h" | 10 #include "base/time.h" |
| 11 #import "chrome/browser/ui/cocoa/about_ipc_controller.h" | 11 #import "chrome/browser/ui/cocoa/about_ipc_controller.h" |
| 12 #include "content/public/browser/browser_ipc_logging.h" | 12 #include "content/public/browser/browser_ipc_logging.h" |
| 13 | 13 |
| 14 #if defined(IPC_MESSAGE_LOG_ENABLED) | 14 #if defined(IPC_MESSAGE_LOG_ENABLED) |
| 15 | 15 |
| 16 @implementation CocoaLogData | 16 @implementation CocoaLogData |
| 17 | 17 |
| 18 - (id)initWithLogData:(const IPC::LogData&)data { | 18 - (id)initWithLogData:(const IPC::LogData&)data { |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 } | 191 } |
| 192 | 192 |
| 193 - (void)setDisplayViewMessages:(BOOL)display { | 193 - (void)setDisplayViewMessages:(BOOL)display { |
| 194 view_ = display; | 194 view_ = display; |
| 195 } | 195 } |
| 196 | 196 |
| 197 @end | 197 @end |
| 198 | 198 |
| 199 #endif // IPC_MESSAGE_LOG_ENABLED | 199 #endif // IPC_MESSAGE_LOG_ENABLED |
| 200 | 200 |
| OLD | NEW |