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

Unified Diff: ipc/ipc_platform_file.h

Issue 316363003: Remove base::kInvalidPlatformFileValue from components, ipc and ppapi. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | « components/nacl/browser/pnacl_host.cc ('k') | ppapi/proxy/ppb_broker_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/ipc_platform_file.h
diff --git a/ipc/ipc_platform_file.h b/ipc/ipc_platform_file.h
index 95b66b7a18d35747db68b44fcbfffc752fd5bfac..40bfa0da189b59cecf9b13d69018e6baffc3f334 100644
--- a/ipc/ipc_platform_file.h
+++ b/ipc/ipc_platform_file.h
@@ -7,7 +7,6 @@
#include "base/basictypes.h"
#include "base/files/file.h"
-#include "base/platform_file.h"
#include "base/process/process.h"
#include "ipc/ipc_export.h"
@@ -25,7 +24,7 @@ typedef base::FileDescriptor PlatformFileForTransit;
inline PlatformFileForTransit InvalidPlatformFileForTransit() {
#if defined(OS_WIN)
- return base::kInvalidPlatformFileValue;
+ return INVALID_HANDLE_VALUE;
#elif defined(OS_POSIX)
return base::FileDescriptor();
#endif
« no previous file with comments | « components/nacl/browser/pnacl_host.cc ('k') | ppapi/proxy/ppb_broker_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698