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

Unified Diff: chrome/renderer/extensions/chrome_v8_context.h

Issue 12313142: Revert 184837 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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
Index: chrome/renderer/extensions/chrome_v8_context.h
===================================================================
--- chrome/renderer/extensions/chrome_v8_context.h (revision 184858)
+++ chrome/renderer/extensions/chrome_v8_context.h (working copy)
@@ -36,10 +36,6 @@
Feature::Context context_type);
~ChromeV8Context();
- // Clears the WebFrame for this contexts and invalidates the associated
- // ModuleSystem.
- void Invalidate();
-
v8::Handle<v8::Context> v8_context() const {
return v8_context_;
}
@@ -51,6 +47,9 @@
WebKit::WebFrame* web_frame() const {
return web_frame_;
}
+ void clear_web_frame() {
+ web_frame_ = NULL;
+ }
Feature::Context context_type() const {
return context_type_;
@@ -101,8 +100,6 @@
// APIs are available, returns an empty set.
const std::set<std::string>& GetAvailableExtensionAPIs();
- Feature::Availability GetAvailability(const std::string& api_name);
-
// Returns a string description of the type of context this is.
std::string GetContextTypeDescription();
@@ -131,8 +128,7 @@
scoped_ptr<ModuleSystem> module_system_;
// The extension APIs available to this context.
- std::set<std::string> available_extension_apis_;
- bool available_extension_apis_initialized_;
+ scoped_ptr<std::set<std::string> > available_extension_apis_;
DISALLOW_COPY_AND_ASSIGN(ChromeV8Context);
};
« no previous file with comments | « chrome/renderer/extensions/binding_generating_native_handler.cc ('k') | chrome/renderer/extensions/chrome_v8_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698