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

Unified Diff: plugin/cross/np_v8_bridge.h

Issue 249013: Fixed Mac gyp build. Switched to using Chrome hash_tables.h, changed... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/o3d/
Patch Set: '' Created 11 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 | « command_buffer/common/cross/cmd_buffer_format.h ('k') | plugin/cross/o3d_glue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: plugin/cross/np_v8_bridge.h
===================================================================
--- plugin/cross/np_v8_bridge.h (revision 27310)
+++ plugin/cross/np_v8_bridge.h (working copy)
@@ -39,7 +39,7 @@
#include <npruntime.h>
#include <map>
-#include "base/cross/std_hash.h"
+#include "base/hash_tables.h"
#include "core/cross/error_status.h"
#include "core/cross/service_dependency.h"
#include "core/cross/types.h"
@@ -179,15 +179,33 @@
T* object_;
};
+} // namespace o3d
+
// Hashes an NPObject so it can be used in a hash_map.
-template <typename T>
-class NPObjectPtrHash {
- public:
- size_t operator() (const NPObjectPtr<T>& ptr) const {
- return o3d::base::hash<size_t>()(reinterpret_cast<size_t>(ptr.Get()));
+#if defined(COMPILER_GCC)
+namespace __gnu_cxx {
+
+template<class T>
+struct hash<o3d::NPObjectPtr<T> > {
+ std::size_t operator()(const o3d::NPObjectPtr<T>& ptr) const {
+ return hash<size_t>()(reinterpret_cast<size_t>(ptr.Get()));
}
};
+} // namespace __gnu_cxx
+#elif defined(COMPILER_MSVC)
+namespace stdext {
+
+template<class T>
+inline size_t hash_value(const o3d::NPObjectPtr<T>& ptr) {
+ return hash_value(reinterpret_cast<size_t>(ptr.Get()));
+}
+
+} // namespace stdext
+#endif // COMPILER
+
+namespace o3d {
+
// A V8 handle that automatically disposes itself when it is destroyed. There
// must be only one of these for each persistent handle, otherwise they might
// be disposed more than once.
@@ -369,9 +387,8 @@
NPObjectPtr<NPObject> GetNPConstructFunction(int arity);
- typedef o3d::base::hash_map<NPObjectPtr<NPObject>,
- AutoV8Persistent<v8::Object>,
- NPObjectPtrHash<NPObject> > NPV8ObjectMap;
+ typedef ::base::hash_map<NPObjectPtr<NPObject>,
+ AutoV8Persistent<v8::Object> > NPV8ObjectMap;
typedef std::map<int, NPObjectPtr<NPObject> > NPConstructFunctionMap;
« no previous file with comments | « command_buffer/common/cross/cmd_buffer_format.h ('k') | plugin/cross/o3d_glue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698