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

Unified Diff: gin/per_context_data.h

Issue 62333018: Implement Asynchronous Module Definition API for Mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Aaron's comments Created 7 years, 1 month 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 | « gin/modules/module_registry_unittests.js ('k') | gin/per_context_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/per_context_data.h
diff --git a/gin/per_context_data.h b/gin/per_context_data.h
new file mode 100644
index 0000000000000000000000000000000000000000..123db59ddf7e7e289332e616effc7116fcfa06c5
--- /dev/null
+++ b/gin/per_context_data.h
@@ -0,0 +1,48 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef GIN_PER_CONTEXT_DATA_H_
+#define GIN_PER_CONTEXT_DATA_H_
+
+#include <vector>
+#include "base/basictypes.h"
+#include "v8/include/v8.h"
+
+namespace gin {
+
+class ContextSupplement {
+ public:
+ ContextSupplement();
+ virtual ~ContextSupplement();
+
+ virtual void Detach(v8::Handle<v8::Context> context) = 0;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ContextSupplement);
+};
+
+class PerContextData {
+ public:
+ explicit PerContextData(v8::Handle<v8::Context> context);
+ ~PerContextData();
+
+ // Can return NULL after the ContextHolder has detached from context.
+ static PerContextData* From(v8::Handle<v8::Context>);
+ void Detach(v8::Handle<v8::Context> context);
+
+ // Takes ownership of the supplement.
+ void AddSupplement(ContextSupplement* supplement);
+
+ private:
+ typedef std::vector<ContextSupplement*> SuplementVector;
+
+ // Owning reference.
+ SuplementVector supplements_;
+
+ DISALLOW_COPY_AND_ASSIGN(PerContextData);
+};
+
+} // namespace gin
+
+#endif // GIN_PER_CONTEXT_DATA_H_
« no previous file with comments | « gin/modules/module_registry_unittests.js ('k') | gin/per_context_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698