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

Side by Side Diff: chrome/browser/ui/extensions/extension_install_ui_default.cc

Issue 2276823003: Change many chrome/browser includes to use qualified paths. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/extensions/extension_install_ui_default.h" 5 #include "chrome/browser/ui/extensions/extension_install_ui_default.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 12 matching lines...) Expand all
23 #include "chrome/browser/ui/browser_window.h" 23 #include "chrome/browser/ui/browser_window.h"
24 #include "chrome/browser/ui/extensions/extension_installed_bubble.h" 24 #include "chrome/browser/ui/extensions/extension_installed_bubble.h"
25 #include "chrome/browser/ui/scoped_tabbed_browser_displayer.h" 25 #include "chrome/browser/ui/scoped_tabbed_browser_displayer.h"
26 #include "chrome/browser/ui/simple_message_box.h" 26 #include "chrome/browser/ui/simple_message_box.h"
27 #include "chrome/browser/ui/singleton_tabs.h" 27 #include "chrome/browser/ui/singleton_tabs.h"
28 #include "chrome/browser/ui/tabs/tab_strip_model.h" 28 #include "chrome/browser/ui/tabs/tab_strip_model.h"
29 #include "chrome/grit/generated_resources.h" 29 #include "chrome/grit/generated_resources.h"
30 #include "components/infobars/core/confirm_infobar_delegate.h" 30 #include "components/infobars/core/confirm_infobar_delegate.h"
31 #include "components/infobars/core/infobar.h" 31 #include "components/infobars/core/infobar.h"
32 #include "components/search/search.h" 32 #include "components/search/search.h"
33 #include "components/strings/grit/components_strings.h"
33 #include "content/public/browser/browser_thread.h" 34 #include "content/public/browser/browser_thread.h"
34 #include "content/public/browser/web_contents.h" 35 #include "content/public/browser/web_contents.h"
35 #include "extensions/browser/install/crx_install_error.h" 36 #include "extensions/browser/install/crx_install_error.h"
36 #include "extensions/common/extension.h" 37 #include "extensions/common/extension.h"
37 #include "grit/components_strings.h"
38 #include "ui/base/l10n/l10n_util.h" 38 #include "ui/base/l10n/l10n_util.h"
39 39
40 #if defined(OS_CHROMEOS) 40 #if defined(OS_CHROMEOS)
41 #include "chrome/browser/ui/extensions/extension_installed_notification.h" 41 #include "chrome/browser/ui/extensions/extension_installed_notification.h"
42 #else 42 #else
43 #include "chrome/common/url_constants.h" 43 #include "chrome/common/url_constants.h"
44 #include "content/public/browser/notification_service.h" 44 #include "content/public/browser/notification_service.h"
45 #endif 45 #endif
46 46
47 #if defined(USE_ASH) 47 #if defined(USE_ASH)
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 254
255 gfx::NativeWindow ExtensionInstallUIDefault::GetDefaultInstallDialogParent() { 255 gfx::NativeWindow ExtensionInstallUIDefault::GetDefaultInstallDialogParent() {
256 Browser* browser = chrome::FindLastActiveWithProfile(profile_); 256 Browser* browser = chrome::FindLastActiveWithProfile(profile_);
257 if (browser) { 257 if (browser) {
258 content::WebContents* contents = 258 content::WebContents* contents =
259 browser->tab_strip_model()->GetActiveWebContents(); 259 browser->tab_strip_model()->GetActiveWebContents();
260 return contents->GetTopLevelNativeWindow(); 260 return contents->GetTopLevelNativeWindow();
261 } 261 }
262 return NULL; 262 return NULL;
263 } 263 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698