Bug 1307009 - Remove caching optimization; r=tromey

This caching feature is no longer valid as the client-side database
will not necessarily be the same as the server since the DB is
only built on nightly.

MozReview-Commit-ID: 550EQmgO9O7
This commit is contained in:
Greg Tatum
2016-10-04 15:15:15 -05:00
parent f3584d844f
commit 240d11e76d
4 changed files with 112 additions and 127 deletions

View File

@@ -3,16 +3,14 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
const { Arg, RetVal, generateActorSpec } = require("devtools/shared/protocol");
const { RetVal, generateActorSpec } = require("devtools/shared/protocol");
const cssPropertiesSpec = generateActorSpec({
typeName: "cssProperties",
methods: {
getCSSDatabase: {
request: {
clientBrowserVersion: Arg(0, "string"),
},
request: {},
response: RetVal("json"),
}