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

Unified Diff: chrome/browser/ui/ash/launcher/chrome_launcher_controller_browsertest.cc

Issue 515563003: Remove dependency of chrome in WebRequestPermissions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated. Created 6 years, 3 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/ui/ash/launcher/chrome_launcher_controller_browsertest.cc
diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_browsertest.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_browsertest.cc
index 2604e88027ba7a888ff1d7e190c1360a81fc047b..88a475549a175afbb466ca6bb25ac64899822919 100644
--- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_browsertest.cc
+++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_browsertest.cc
@@ -2066,16 +2066,16 @@ IN_PROC_BROWSER_TEST_F(ShelfAppBrowserTest, OverflowBubble) {
// still gets detected properly.
IN_PROC_BROWSER_TEST_F(ShelfAppBrowserTest, V1AppNavigation) {
// We assume that the web store is always there (which it apparently is).
- controller_->PinAppWithID(extension_misc::kWebStoreAppId);
+ controller_->PinAppWithID(extensions::kWebStoreAppId);
ash::ShelfID id = controller_->GetShelfIDForAppID(
- extension_misc::kWebStoreAppId);
+ extensions::kWebStoreAppId);
ASSERT_NE(0, id);
EXPECT_EQ(ash::STATUS_CLOSED, model_->ItemByID(id)->status);
// Create a windowed application.
AppLaunchParams params(
profile(),
- controller_->GetExtensionForAppID(extension_misc::kWebStoreAppId),
+ controller_->GetExtensionForAppID(extensions::kWebStoreAppId),
0,
chrome::HOST_DESKTOP_TYPE_ASH);
params.container = extensions::LAUNCH_CONTAINER_WINDOW;

Powered by Google App Engine
This is Rietveld 408576698