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

Side by Side Diff: chrome/browser/ui/cocoa/extensions/extension_uninstall_dialog_cocoa.mm

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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/extensions/extension_uninstall_dialog.h" 5 #include "chrome/browser/extensions/extension_uninstall_dialog.h"
6 6
7 #import <Cocoa/Cocoa.h> 7 #import <Cocoa/Cocoa.h>
8 8
9 #include <string> 9 #include <string>
10 10
11 #import "base/mac/scoped_nsobject.h" 11 #import "base/mac/scoped_nsobject.h"
12 #import "base/strings/sys_string_conversions.h" 12 #import "base/strings/sys_string_conversions.h"
13 #include "base/strings/utf_string_conversions.h" 13 #include "base/strings/utf_string_conversions.h"
14 #include "chrome/grit/generated_resources.h" 14 #include "chrome/grit/generated_resources.h"
15 #include "components/strings/grit/components_strings.h"
15 #include "extensions/common/extension.h" 16 #include "extensions/common/extension.h"
16 #include "grit/components_strings.h"
17 #include "skia/ext/skia_utils_mac.h" 17 #include "skia/ext/skia_utils_mac.h"
18 #include "ui/base/l10n/l10n_util_mac.h" 18 #include "ui/base/l10n/l10n_util_mac.h"
19 #include "ui/gfx/image/image_skia_util_mac.h" 19 #include "ui/gfx/image/image_skia_util_mac.h"
20 20
21 namespace { 21 namespace {
22 22
23 // The Cocoa implementation of ExtensionUninstallDialog. This has a less 23 // The Cocoa implementation of ExtensionUninstallDialog. This has a less
24 // complex life cycle than the Views and GTK implementations because the 24 // complex life cycle than the Views and GTK implementations because the
25 // dialog blocks the page from navigating away and destroying the dialog, 25 // dialog blocks the page from navigating away and destroying the dialog,
26 // so there's no way for the dialog to outlive its delegate. 26 // so there's no way for the dialog to outlive its delegate.
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 } // namespace 82 } // namespace
83 83
84 // static 84 // static
85 extensions::ExtensionUninstallDialog* 85 extensions::ExtensionUninstallDialog*
86 extensions::ExtensionUninstallDialog::Create(Profile* profile, 86 extensions::ExtensionUninstallDialog::Create(Profile* profile,
87 gfx::NativeWindow parent, 87 gfx::NativeWindow parent,
88 Delegate* delegate) { 88 Delegate* delegate) {
89 return new ExtensionUninstallDialogCocoa(profile, delegate); 89 return new ExtensionUninstallDialogCocoa(profile, delegate);
90 } 90 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698