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

Unified Diff: chrome/browser/ui/views/create_application_shortcut_view.cc

Issue 10375021: Move Extension into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Take 6 Created 8 years, 7 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/views/create_application_shortcut_view.cc
diff --git a/chrome/browser/ui/views/create_application_shortcut_view.cc b/chrome/browser/ui/views/create_application_shortcut_view.cc
index 14e165044870bd6e0f99247587e674390962a7bf..93480e05c77d59846701dffff4f6b58844879bcf 100644
--- a/chrome/browser/ui/views/create_application_shortcut_view.cc
+++ b/chrome/browser/ui/views/create_application_shortcut_view.cc
@@ -208,7 +208,7 @@ void ShowCreateWebAppShortcutsDialog(gfx::NativeWindow parent_window,
void ShowCreateChromeAppShortcutsDialog(gfx::NativeWindow parent_window,
Profile* profile,
- const Extension* app) {
+ const extensions::Extension* app) {
views::Widget::CreateWindowWithParent(
new CreateChromeApplicationShortcutView(profile, app),
parent_window)->Show();
@@ -482,7 +482,7 @@ void CreateUrlApplicationShortcutView::OnIconDownloaded(bool errored,
CreateChromeApplicationShortcutView::CreateChromeApplicationShortcutView(
Profile* profile,
- const Extension* app) :
+ const extensions::Extension* app) :
CreateApplicationShortcutView(profile),
app_(app),
ALLOW_THIS_IN_INITIALIZER_LIST(tracker_(this)) {

Powered by Google App Engine
This is Rietveld 408576698