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

Side by Side 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: fix Created 9 years 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 | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698