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

Side by Side Diff: Source/core/testing/PrivateScriptTest.js

Issue 413393003: Blink-in-JS: Implement internal APIs exposed only to private scripts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 "use strict"; 5 "use strict";
6 6
7 installClass("PrivateScriptTest", function(global) { 7 installClass("PrivateScriptTest", function(global) {
8 var InternalsPrototype = Object.create(Element.prototype); 8 var InternalsPrototype = Object.create(Element.prototype);
9 9
10 InternalsPrototype.initialize = function() { 10 InternalsPrototype.initialize = function() {
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 122
123 InternalsPrototype.addIntegerForPrivateScriptOnly = function(value1, value2) { 123 InternalsPrototype.addIntegerForPrivateScriptOnly = function(value1, value2) {
124 return value1 + value2; 124 return value1 + value2;
125 } 125 }
126 126
127 Object.defineProperty(InternalsPrototype, "stringAttributeForPrivateScriptOn ly", { 127 Object.defineProperty(InternalsPrototype, "stringAttributeForPrivateScriptOn ly", {
128 get: function() { return this.m_stringAttributeForPrivateScriptOnly; }, 128 get: function() { return this.m_stringAttributeForPrivateScriptOnly; },
129 set: function(value) { this.m_stringAttributeForPrivateScriptOnly = valu e; } 129 set: function(value) { this.m_stringAttributeForPrivateScriptOnly = valu e; }
130 }); 130 });
131 131
132 InternalsPrototype.addIntegerImplementedInCPP = function(value1, value2) {
133 return this.addIntegerImplementedInCPPForPrivateScriptOnly(value1, value 2);
134 }
135
136 Object.defineProperty(InternalsPrototype, "stringAttributeImplementedInCPP", {
137 get: function() { return this.m_stringAttributeImplementedInCPPForPrivat eScriptOnly; },
138 set: function(value) { this.m_stringAttributeImplementedInCPPForPrivateS criptOnly = value; }
139 });
140
132 return InternalsPrototype; 141 return InternalsPrototype;
133 }); 142 });
OLDNEW
« Source/bindings/templates/interface_base.cpp ('K') | « Source/core/testing/PrivateScriptTest.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698