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

Unified Diff: Tools/GardeningServer/scripts/net.js

Issue 362453003: Remove dead code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | « Tools/GardeningServer/scripts/garden-o-matic.js ('k') | Tools/GardeningServer/scripts/results.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/scripts/net.js
diff --git a/Tools/GardeningServer/scripts/net.js b/Tools/GardeningServer/scripts/net.js
index 379a5b311d202db691619f1e4263f6cf7ae1915d..644457b05bdfc6dd6022354c0a829b1c0e06263e 100644
--- a/Tools/GardeningServer/scripts/net.js
+++ b/Tools/GardeningServer/scripts/net.js
@@ -27,13 +27,6 @@ var net = net || {};
(function () {
-net.get = function(url)
-{
- return net.ajax({
- url: url
- });
-};
-
net.json = function(url)
{
return net.ajax({
@@ -81,16 +74,6 @@ net.ajax = function(options)
});
};
-net.post = function(url, data)
-{
- return net.ajax({
- url: url,
- type: 'POST',
- data: data,
- });
-
-};
-
net.probe = function(url)
{
return net.ajax({
« no previous file with comments | « Tools/GardeningServer/scripts/garden-o-matic.js ('k') | Tools/GardeningServer/scripts/results.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698