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

Side by Side Diff: extensions/browser/extension_system.cc

Issue 147923005: Split ExtensionSystem interface from ExtensionSystemImpl implementation, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 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 "extensions/browser/extension_system.h"
6 #include "chrome/browser/extensions/extension_system_factory.h"
James Cook 2014/01/28 23:40:57 optional nit: blank line above?
Yoyo Zhou 2014/01/29 00:42:56 Done.
7
8 namespace extensions {
9
10 ExtensionSystem::ExtensionSystem() {
11 }
12
13 ExtensionSystem::~ExtensionSystem() {
14 }
15
16 // static
17 ExtensionSystem* ExtensionSystem::Get(content::BrowserContext* context) {
18 return ExtensionSystemFactory::GetForBrowserContext(context);
19 }
20
21 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698