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

Side by Side Diff: chrome/browser/extensions/api/declarative/rules_registry.cc

Issue 28273006: <webview>: Implement declarativeWebRequest API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added tests Created 7 years, 1 month 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 unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698