OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 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.h" |
| 6 |
| 7 PluginInstaller::~PluginInstaller() { |
| 8 } |
| 9 |
| 10 PluginInstaller::PluginInstaller(const std::string& identifier, |
| 11 const GURL& plugin_url, |
| 12 const GURL& help_url, |
| 13 const string16& name, |
| 14 bool url_for_display) |
| 15 : identifier_(identifier), |
| 16 plugin_url_(plugin_url), |
| 17 help_url_(help_url), |
| 18 name_(name), |
| 19 url_for_display_(url_for_display) { |
| 20 } |
OLD | NEW |