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

Unified Diff: chrome/browser/safe_browsing/settings_reset_prompt/extension_info.cc

Issue 2701313002: Adds a modal dialog implementation of the settings reset prompt. (Closed)
Patch Set: Fix constness in mock test class Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/safe_browsing/settings_reset_prompt/extension_info.cc
diff --git a/chrome/browser/safe_browsing/settings_reset_prompt/extension_info.cc b/chrome/browser/safe_browsing/settings_reset_prompt/extension_info.cc
index ef27c161100b91b896eed14937bd869b66bff1a1..2e8c64d0895365e9e87efa31c4bc448f384e6ea3 100644
--- a/chrome/browser/safe_browsing/settings_reset_prompt/extension_info.cc
+++ b/chrome/browser/safe_browsing/settings_reset_prompt/extension_info.cc
@@ -14,6 +14,10 @@ ExtensionInfo::ExtensionInfo(const extensions::Extension* extension) {
name = extension->name();
}
+ExtensionInfo::ExtensionInfo(const extensions::ExtensionId& id,
+ const std::string& name)
+ : id(id), name(name) {}
+
ExtensionInfo::~ExtensionInfo() {}
} // namespace safe_browsing

Powered by Google App Engine
This is Rietveld 408576698