| Index: chrome/browser/extensions/api/declarative/test_rules_registry.cc
|
| diff --git a/chrome/browser/extensions/api/declarative/test_rules_registry.cc b/chrome/browser/extensions/api/declarative/test_rules_registry.cc
|
| index 73cbc6bdb32997e21e0e1254bf8fa4e6798f06f3..660e8b6ecab3eeea668cdbe6837cbe1fc28eb090 100644
|
| --- a/chrome/browser/extensions/api/declarative/test_rules_registry.cc
|
| +++ b/chrome/browser/extensions/api/declarative/test_rules_registry.cc
|
| @@ -9,12 +9,6 @@ namespace extensions {
|
| TestRulesRegistry::TestRulesRegistry()
|
| : owner_thread_(content::BrowserThread::UI) {}
|
|
|
| -TestRulesRegistry::~TestRulesRegistry() {}
|
| -
|
| -content::BrowserThread::ID TestRulesRegistry::GetOwnerThread() const {
|
| - return owner_thread_;
|
| -}
|
| -
|
| void TestRulesRegistry::SetOwnerThread(
|
| content::BrowserThread::ID owner_thread) {
|
| owner_thread_ = owner_thread;
|
| @@ -37,8 +31,14 @@ std::string TestRulesRegistry::RemoveAllRulesImpl(
|
| return result_;
|
| }
|
|
|
| +content::BrowserThread::ID TestRulesRegistry::GetOwnerThread() const {
|
| + return owner_thread_;
|
| +}
|
| +
|
| void TestRulesRegistry::SetResult(const std::string& result) {
|
| result_ = result;
|
| }
|
|
|
| +TestRulesRegistry::~TestRulesRegistry() {}
|
| +
|
| } // namespace extensions
|
|
|