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

Unified Diff: extensions/browser/runtime_data.cc

Issue 2839373003: struct UnloadedExtensionInfo -> enum UnloadedExtensionInfoReason (Closed)
Patch Set: Rebase Created 3 years, 8 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
« no previous file with comments | « extensions/browser/runtime_data.h ('k') | extensions/browser/runtime_data_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/runtime_data.cc
diff --git a/extensions/browser/runtime_data.cc b/extensions/browser/runtime_data.cc
index e96cb132e88563f133e0a6be29cf591f178efb1f..a598dcac00ee24ca2290b4574d33b209411c67a1 100644
--- a/extensions/browser/runtime_data.cc
+++ b/extensions/browser/runtime_data.cc
@@ -49,7 +49,7 @@ void RuntimeData::ClearAll() {
void RuntimeData::OnExtensionUnloaded(content::BrowserContext* browser_context,
const Extension* extension,
- UnloadedExtensionInfo::Reason reason) {
+ UnloadedExtensionReason reason) {
ExtensionFlagsMap::iterator iter = extension_flags_.find(extension->id());
if (iter != extension_flags_.end())
iter->second = iter->second & kPersistAcrossUnloadMask;
« no previous file with comments | « extensions/browser/runtime_data.h ('k') | extensions/browser/runtime_data_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698