Bug 1290337 - Part 13: Replace Value parameter to const Value& in finalizeInBackground. r=sfink

This commit is contained in:
Tooru Fujisawa
2016-09-11 18:15:23 +09:00
parent 59ba07a396
commit a33ab4d32a
6 changed files with 6 additions and 6 deletions

View File

@@ -93,7 +93,7 @@ class CPOWProxyHandler : public BaseProxyHandler
constexpr CPOWProxyHandler()
: BaseProxyHandler(&family) {}
virtual bool finalizeInBackground(Value priv) const override {
virtual bool finalizeInBackground(const Value& priv) const override {
return false;
}