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

Unified Diff: chrome/browser/plugin_installer.cc

Issue 8664027: Add PluginInstaller to encapsulate information about a missing plug-in. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/plugin_installer.h ('k') | chrome/browser/plugin_observer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/plugin_installer.cc
diff --git a/chrome/browser/plugin_installer.cc b/chrome/browser/plugin_installer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..00d6c493931897a3fa365d02a3cbcacc65692e70
--- /dev/null
+++ b/chrome/browser/plugin_installer.cc
@@ -0,0 +1,20 @@
+// 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.h"
+
+PluginInstaller::~PluginInstaller() {
+}
+
+PluginInstaller::PluginInstaller(const std::string& identifier,
+ const GURL& plugin_url,
+ const GURL& help_url,
+ const string16& name,
+ bool url_for_display)
+ : identifier_(identifier),
+ plugin_url_(plugin_url),
+ help_url_(help_url),
+ name_(name),
+ url_for_display_(url_for_display) {
+}
« no previous file with comments | « chrome/browser/plugin_installer.h ('k') | chrome/browser/plugin_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698