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

Unified Diff: chrome/browser/extensions/install_observer.cc

Issue 72463002: Move InstallObserver::OnBeginExtensionInstall parameters to a struct (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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/extensions/install_observer.h ('k') | chrome/browser/extensions/install_tracker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/install_observer.cc
diff --git a/chrome/browser/extensions/install_observer.cc b/chrome/browser/extensions/install_observer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1145951ced1438a79421e4da9f9202f9d06960ad
--- /dev/null
+++ b/chrome/browser/extensions/install_observer.cc
@@ -0,0 +1,21 @@
+// Copyright 2013 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/extensions/install_observer.h"
+
+namespace extensions {
+
+InstallObserver::ExtensionInstallParams::ExtensionInstallParams(
+ std::string extension_id,
+ std::string extension_name,
+ gfx::ImageSkia installing_icon,
+ bool is_app,
+ bool is_platform_app)
+ : extension_id(extension_id),
+ extension_name(extension_name),
+ installing_icon(installing_icon),
+ is_app(is_app),
+ is_platform_app(is_platform_app) {}
+
+} // namespace extensions
« no previous file with comments | « chrome/browser/extensions/install_observer.h ('k') | chrome/browser/extensions/install_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698