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

Unified Diff: content/common/pepper_file_util.cc

Issue 1422773008: Fixing remaining VC++ 2015 64-bit build breaks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing unneeded include Created 5 years 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 | « content/child/npapi/webplugin_delegate_impl_win.cc ('k') | content/common/sandbox_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/pepper_file_util.cc
diff --git a/content/common/pepper_file_util.cc b/content/common/pepper_file_util.cc
index 6264faa5374422e65609de14913359318e0b66fa..4e5df94d705ce5c4853947c659cefcc0d0f9348d 100644
--- a/content/common/pepper_file_util.cc
+++ b/content/common/pepper_file_util.cc
@@ -3,6 +3,7 @@
// found in the LICENSE file.
#include "content/common/pepper_file_util.h"
+#include "ppapi/shared_impl/platform_file.h"
namespace content {
@@ -22,13 +23,7 @@ storage::FileSystemType PepperFileSystemTypeToFileSystemType(
int IntegerFromSyncSocketHandle(
const base::SyncSocket::Handle& socket_handle) {
-#if defined(OS_WIN)
- return reinterpret_cast<int>(socket_handle);
-#elif defined(OS_POSIX)
- return socket_handle;
-#else
-#error Platform not supported.
-#endif
+ return ppapi::PlatformFileToInt(socket_handle);
}
} // namespace content
« no previous file with comments | « content/child/npapi/webplugin_delegate_impl_win.cc ('k') | content/common/sandbox_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698