| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/extensions/api/declarative/rules_registry.h" |
| 6 #include "content/public/browser/browser_thread.h" |
| 7 |
| 8 namespace extensions { |
| 9 |
| 10 RulesRegistry::RulesRegistry(content::BrowserThread::ID owner_thread, |
| 11 const std::string& event_name, |
| 12 const WebViewKey& webview_key) |
| 13 : owner_thread_(owner_thread), |
| 14 event_name_(event_name), |
| 15 webview_key_(webview_key) { |
| 16 } |
| 17 |
| 18 RulesRegistry::~RulesRegistry() { |
| 19 } |
| 20 |
| 21 } // namespace extensions |
| OLD | NEW |