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

Unified Diff: extensions/browser/api/bluetooth/bluetooth_event_router_unittest.cc

Issue 2839373003: struct UnloadedExtensionInfo -> enum UnloadedExtensionInfoReason (Closed)
Patch Set: Enum class 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
Index: extensions/browser/api/bluetooth/bluetooth_event_router_unittest.cc
diff --git a/extensions/browser/api/bluetooth/bluetooth_event_router_unittest.cc b/extensions/browser/api/bluetooth/bluetooth_event_router_unittest.cc
index 533fec0202580b24f956fbfa8d0089263035b3f2..1f0d1df5fd555f697fed004b5f74e49b0aa1689c 100644
--- a/extensions/browser/api/bluetooth/bluetooth_event_router_unittest.cc
+++ b/extensions/browser/api/bluetooth/bluetooth_event_router_unittest.cc
@@ -94,8 +94,9 @@ TEST_F(BluetoothEventRouterTest, UnloadExtension) {
.SetID(kTestExtensionId)
.Build();
- ExtensionRegistry::Get(browser_context())->TriggerOnUnloaded(
- extension.get(), UnloadedExtensionInfo::REASON_DISABLE);
+ ExtensionRegistry::Get(browser_context())
+ ->TriggerOnUnloaded(extension.get(),
+ UnloadedExtensionReason::REASON_DISABLE);
EXPECT_CALL(*mock_adapter_, RemoveObserver(testing::_)).Times(1);
}

Powered by Google App Engine
This is Rietveld 408576698