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

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

Issue 107933006: Get rid of ui_cocoa_third_party_toolkits target from ui.gyp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ADD README.chromium Created 7 years 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 | Annotate | Revision Log
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 #import "chrome/browser/ui/cocoa/extensions/extension_installed_bubble_controlle r.h" 5 #import "chrome/browser/ui/cocoa/extensions/extension_installed_bubble_controlle r.h"
6 6
7 #include "base/i18n/rtl.h" 7 #include "base/i18n/rtl.h"
8 #include "base/mac/bundle_locations.h" 8 #include "base/mac/bundle_locations.h"
9 #include "base/mac/mac_util.h" 9 #include "base/mac/mac_util.h"
10 #include "base/strings/sys_string_conversions.h" 10 #include "base/strings/sys_string_conversions.h"
(...skipping 26 matching lines...) Expand all
37 #include "chrome/common/extensions/api/omnibox/omnibox_handler.h" 37 #include "chrome/common/extensions/api/omnibox/omnibox_handler.h"
38 #include "chrome/common/extensions/sync_helper.h" 38 #include "chrome/common/extensions/sync_helper.h"
39 #include "chrome/common/url_constants.h" 39 #include "chrome/common/url_constants.h"
40 #include "content/public/browser/notification_details.h" 40 #include "content/public/browser/notification_details.h"
41 #include "content/public/browser/notification_registrar.h" 41 #include "content/public/browser/notification_registrar.h"
42 #include "content/public/browser/notification_source.h" 42 #include "content/public/browser/notification_source.h"
43 #include "extensions/common/extension.h" 43 #include "extensions/common/extension.h"
44 #include "grit/chromium_strings.h" 44 #include "grit/chromium_strings.h"
45 #include "grit/generated_resources.h" 45 #include "grit/generated_resources.h"
46 #import "skia/ext/skia_utils_mac.h" 46 #import "skia/ext/skia_utils_mac.h"
47 #import "third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h" 47 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMUILocalizerAndLayoutTw eaker.h"
48 #include "ui/base/l10n/l10n_util.h" 48 #include "ui/base/l10n/l10n_util.h"
49 49
50 using content::BrowserThread; 50 using content::BrowserThread;
51 using extensions::BundleInstaller; 51 using extensions::BundleInstaller;
52 using extensions::Extension; 52 using extensions::Extension;
53 using extensions::UnloadedExtensionInfo; 53 using extensions::UnloadedExtensionInfo;
54 54
55 // C++ class that receives EXTENSION_LOADED notifications and proxies them back 55 // C++ class that receives EXTENSION_LOADED notifications and proxies them back
56 // to |controller|. 56 // to |controller|.
57 class ExtensionLoadedNotificationObserver 57 class ExtensionLoadedNotificationObserver
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 ExtensionInstallUI::OpenAppInstalledUI(browser_->profile(), extension_->id()); 696 ExtensionInstallUI::OpenAppInstalledUI(browser_->profile(), extension_->id());
697 } 697 }
698 698
699 - (void)awakeFromNib { 699 - (void)awakeFromNib {
700 if (bundle_) 700 if (bundle_)
701 return; 701 return;
702 [self initializeLabel]; 702 [self initializeLabel];
703 } 703 }
704 704
705 @end 705 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698