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

Side by Side Diff: chrome/browser/plugin_installer_observer.cc

Issue 10933044: Move chrome/browser/plugin_* to chrome/browser/plugins/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@remove_plugin_group
Patch Set: . Created 8 years, 3 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
« no previous file with comments | « chrome/browser/plugin_installer_observer.h ('k') | chrome/browser/plugin_installer_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 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/plugin_installer_observer.h"
6
7 #include "chrome/browser/plugin_installer.h"
8
9 PluginInstallerObserver::PluginInstallerObserver(PluginInstaller* installer)
10 : installer_(installer) {
11 installer->AddObserver(this);
12 }
13
14 PluginInstallerObserver::~PluginInstallerObserver() {
15 installer_->RemoveObserver(this);
16 }
17
18 void PluginInstallerObserver::DownloadStarted() {
19 }
20
21 void PluginInstallerObserver::DownloadFinished() {
22 }
23
24 void PluginInstallerObserver::DownloadError(const std::string& message) {
25 }
26
27 void PluginInstallerObserver::DownloadCancelled() {
28 }
29
30 WeakPluginInstallerObserver::WeakPluginInstallerObserver(
31 PluginInstaller* installer) : PluginInstallerObserver(installer) {
32 installer->AddWeakObserver(this);
33 }
34
35 WeakPluginInstallerObserver::~WeakPluginInstallerObserver() {
36 installer()->RemoveWeakObserver(this);
37 }
38
39 void WeakPluginInstallerObserver::OnlyWeakObserversLeft() {
40 }
OLDNEW
« no previous file with comments | « chrome/browser/plugin_installer_observer.h ('k') | chrome/browser/plugin_installer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698