| Index: chrome/browser/plugin_installer_observer.cc
|
| diff --git a/chrome/browser/plugin_installer_observer.cc b/chrome/browser/plugin_installer_observer.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9ffd10104ad3ebf27ff81ef098c4b15a64f65664
|
| --- /dev/null
|
| +++ b/chrome/browser/plugin_installer_observer.cc
|
| @@ -0,0 +1,28 @@
|
| +// Copyright (c) 2011 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/plugin_installer_observer.h"
|
| +
|
| +#include "chrome/browser/plugin_installer.h"
|
| +
|
| +PluginInstallerObserver::PluginInstallerObserver(PluginInstaller* installer)
|
| + : installer_(installer) {
|
| + if (installer)
|
| + installer->AddObserver(this);
|
| +}
|
| +
|
| +PluginInstallerObserver::~PluginInstallerObserver() {
|
| + if (installer_)
|
| + installer_->RemoveObserver(this);
|
| +}
|
| +
|
| +void PluginInstallerObserver::DidStartDownload() {
|
| +}
|
| +
|
| +void PluginInstallerObserver::DidFinishDownload() {
|
| +}
|
| +
|
| +void PluginInstallerObserver::DidFinishInstallation() {
|
| +}
|
| +
|
|
|