Index: chrome/browser/extensions/api/plugins/plugins_api.cc |
diff --git a/chrome/browser/extensions/api/plugins/plugins_api.cc b/chrome/browser/extensions/api/plugins/plugins_api.cc |
deleted file mode 100644 |
index e87232aac8f497a8f374652ef59c7fd266ff0a66..0000000000000000000000000000000000000000 |
--- a/chrome/browser/extensions/api/plugins/plugins_api.cc |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "chrome/browser/extensions/api/plugins/plugins_api.h" |
- |
-#include "base/lazy_instance.h" |
-#include "chrome/common/extensions/api/plugins/plugins_handler.h" |
- |
-namespace extensions { |
- |
-static base::LazyInstance<ProfileKeyedAPIFactory<PluginsAPI> > |
- g_factory = LAZY_INSTANCE_INITIALIZER; |
- |
-// static |
-ProfileKeyedAPIFactory<PluginsAPI>* PluginsAPI::GetFactoryInstance() { |
- return &g_factory.Get(); |
-} |
- |
-PluginsAPI::PluginsAPI(Profile* profile) { |
- (new PluginsHandler)->Register(); |
-} |
- |
-PluginsAPI::~PluginsAPI() { |
-} |
- |
-} // namespace extensions |