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

Unified Diff: ipc/ipc_platform_file.h

Issue 397014: Revert 31875 to see whether it fixes reliability bot. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 1 month 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 | « ipc/ipc.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_platform_file.h
===================================================================
--- ipc/ipc_platform_file.h (revision 32064)
+++ ipc/ipc_platform_file.h (working copy)
@@ -1,35 +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.
-
-#ifndef IPC_IPC_PLATFORM_FILE_H_
-#define IPC_IPC_PLATFORM_FILE_H_
-
-#include "base/basictypes.h"
-
-#include "base/platform_file.h"
-
-#if defined(OS_POSIX)
-#include "base/file_descriptor_posix.h"
-#endif
-
-namespace IPC {
-
-#if defined(OS_WIN)
-typedef base::PlatformFile PlatformFileForTransit;
-#elif defined(OS_POSIX)
-typedef base::FileDescriptor PlatformFileForTransit;
-#endif
-
-inline base::PlatformFile PlatformFileForTransitToPlatformFile(
- const PlatformFileForTransit& transit) {
-#if defined(OS_WIN)
- return transit;
-#elif defined(OS_POSIX)
- return transit.fd;
-#endif
-}
-
-} // namespace IPC
-
-#endif // IPC_IPC_PLATFORM_FILE_H_
« no previous file with comments | « ipc/ipc.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698