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

Unified Diff: mojo/edk/embedder/platform_handle.cc

Issue 1352913002: Remove Windows support from the EDK. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 3 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 | « mojo/edk/embedder/platform_handle.h ('k') | mojo/edk/embedder/platform_handle_utils_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/embedder/platform_handle.cc
diff --git a/mojo/edk/embedder/platform_handle.cc b/mojo/edk/embedder/platform_handle.cc
index 04d4f08e37b72714022fe5004c203f869bcc36fd..570aac9c2e896efb337169fde0546cd21a20fb90 100644
--- a/mojo/edk/embedder/platform_handle.cc
+++ b/mojo/edk/embedder/platform_handle.cc
@@ -4,14 +4,7 @@
#include "mojo/edk/embedder/platform_handle.h"
-#include "build/build_config.h"
-#if defined(OS_POSIX)
#include <unistd.h>
-#elif defined(OS_WIN)
-#include <windows.h>
-#else
-#error "Platform not yet supported."
-#endif
#include "base/logging.h"
@@ -22,17 +15,9 @@ void PlatformHandle::CloseIfNecessary() {
if (!is_valid())
return;
-#if defined(OS_POSIX)
bool success = (close(fd) == 0);
DPCHECK(success);
fd = -1;
-#elif defined(OS_WIN)
- bool success = !!CloseHandle(handle);
- DPCHECK(success);
- handle = INVALID_HANDLE_VALUE;
-#else
-#error "Platform not yet supported."
-#endif
}
} // namespace embedder
« no previous file with comments | « mojo/edk/embedder/platform_handle.h ('k') | mojo/edk/embedder/platform_handle_utils_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698