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

Unified Diff: chrome/browser/ui/cocoa/about_ipc_bridge.mm

Issue 6265015: [Mac] Merge single-function file about_ipc_dialog.{h,mm} into about_ipc_bridge.{h,mm}. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 9 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/cocoa/about_ipc_bridge.h ('k') | chrome/browser/ui/cocoa/about_ipc_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/about_ipc_bridge.mm
diff --git a/chrome/browser/ui/cocoa/about_ipc_bridge.mm b/chrome/browser/ui/cocoa/about_ipc_bridge.mm
deleted file mode 100644
index 7a7f41f700c8461f77971fe0febff6f651baafff..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/cocoa/about_ipc_bridge.mm
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/ui/cocoa/about_ipc_bridge.h"
-#include "chrome/browser/ui/cocoa/about_ipc_controller.h"
-
-#if defined(IPC_MESSAGE_LOG_ENABLED)
-
-void AboutIPCBridge::Log(const IPC::LogData& data) {
- CocoaLogData* cocoa_data = [[CocoaLogData alloc] initWithLogData:data];
- if ([NSThread isMainThread]) {
- [controller_ log:cocoa_data];
- } else {
- [controller_ performSelectorOnMainThread:@selector(log:)
- withObject:cocoa_data
- waitUntilDone:NO];
- }
-}
-
-#endif
« no previous file with comments | « chrome/browser/ui/cocoa/about_ipc_bridge.h ('k') | chrome/browser/ui/cocoa/about_ipc_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698