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

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

Issue 234413005: Move most of ChromeV8Context to a base ScriptContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: factor feature_channel out of module_system Created 6 years, 8 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 | « chrome/renderer/extensions/request_sender.cc ('k') | chrome/renderer/extensions/safe_builtins.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/extensions/safe_builtins.h
diff --git a/chrome/renderer/extensions/safe_builtins.h b/chrome/renderer/extensions/safe_builtins.h
deleted file mode 100644
index f34a949fb8f1f8936f4cccb7b7b260eaa0f254c7..0000000000000000000000000000000000000000
--- a/chrome/renderer/extensions/safe_builtins.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// 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 CHROME_RENDERER_EXTENSIONS_SAFE_BUILTINS_H_
-#define CHROME_RENDERER_EXTENSIONS_SAFE_BUILTINS_H_
-
-#include "v8/include/v8.h"
-
-namespace extensions {
-class ChromeV8Context;
-
-// A collection of safe builtin objects, in that they won't be tained by
-// extensions overriding methods on them.
-class SafeBuiltins {
- public:
- // Creates the v8::Extension which manages SafeBuiltins instances.
- static v8::Extension* CreateV8Extension();
-
- explicit SafeBuiltins(ChromeV8Context* context);
-
- virtual ~SafeBuiltins();
-
- // Each method returns an object with methods taken from their respective
- // builtin object's prototype, adapted to automatically call() themselves.
- //
- // Examples:
- // Array.prototype.forEach.call(...) becomes Array.forEach(...)
- // Object.prototype.toString.call(...) becomes Object.toString(...)
- // Object.keys.call(...) becomes Object.keys(...)
- v8::Local<v8::Object> GetArray() const;
- v8::Local<v8::Object> GetFunction() const;
- v8::Local<v8::Object> GetJSON() const;
- // NOTE(kalman): VS2010 won't compile "GetObject", it mysteriously renames it
- // to "GetObjectW" - hence GetObjekt. Sorry.
- v8::Local<v8::Object> GetObjekt() const;
- v8::Local<v8::Object> GetRegExp() const;
- v8::Local<v8::Object> GetString() const;
-
- private:
- ChromeV8Context* context_;
-};
-
-} // namespace extensions
-
-#endif // CHROME_RENDERER_EXTENSIONS_SAFE_BUILTINS_H_
« no previous file with comments | « chrome/renderer/extensions/request_sender.cc ('k') | chrome/renderer/extensions/safe_builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698