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

Unified Diff: plugin/cross/o3d_glue.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 | « plugin/cross/np_v8_bridge.h ('k') | tests/tests.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: plugin/cross/o3d_glue.h
===================================================================
--- plugin/cross/o3d_glue.h (revision 27310)
+++ plugin/cross/o3d_glue.h (working copy)
@@ -52,7 +52,7 @@
#include <string>
#include <vector>
#include "base/scoped_ptr.h"
-#include "base/cross/std_hash.h"
+#include "base/hash_tables.h"
#include "core/cross/display_mode.h"
#include "core/cross/display_window.h"
#include "core/cross/object_base.h"
@@ -75,6 +75,41 @@
class Renderer;
}
+// Hashes the NPClass and ObjectBase types so they can be used in a hash_map.
+#if defined(COMPILER_GCC)
+namespace __gnu_cxx {
+
+template<>
+struct hash<NPClass*> {
+ std::size_t operator()(NPClass* const& ptr) const {
+ return hash<size_t>()(reinterpret_cast<size_t>(ptr));
+ }
+};
+
+template<>
+struct hash<const o3d::ObjectBase::Class*> {
+ std::size_t operator()(const o3d::ObjectBase::Class* const& ptr) const {
+ return hash<size_t>()(reinterpret_cast<size_t>(ptr));
+ }
+};
+
+} // namespace __gnu_cxx
+#elif defined(COMPILER_MSVC)
+namespace stdext {
+
+template<>
+inline size_t hash_value(NPClass* const& ptr) {
+ return hash_value(reinterpret_cast<size_t>(ptr));
+}
+
+template<>
+inline size_t hash_value(const o3d::ObjectBase::Class* const& ptr) {
+ return hash_value(reinterpret_cast<size_t>(ptr));
+}
+
+} // namespace stdext
+#endif // COMPILER
+
namespace glue {
class StreamManager;
@@ -119,10 +154,10 @@
typedef glue::namespace_o3d::class_Client::NPAPIObject ClientNPObject;
class PluginObject: public NPObject {
- typedef o3d::base::hash_map<Id, NPAPIObject *> ClientObjectMap;
- typedef o3d::base::hash_map<const ObjectBase::Class *, NPClass *>
+ typedef ::base::hash_map<Id, NPAPIObject *> ClientObjectMap;
+ typedef ::base::hash_map<const ObjectBase::Class *, NPClass *>
ClientToNPClassMap;
- typedef o3d::base::hash_map<NPClass *, const ObjectBase::Class *>
+ typedef ::base::hash_map<NPClass *, const ObjectBase::Class *>
NPToClientClassMap;
NPP npp_;
« no previous file with comments | « plugin/cross/np_v8_bridge.h ('k') | tests/tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698