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

Side by Side Diff: chrome/browser/ui/cocoa/first_run_dialog.mm

Issue 12321107: Move shell integration code from chrome/browser to apps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | 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/first_run_dialog.h" 5 #import "chrome/browser/ui/cocoa/first_run_dialog.h"
6 6
7 #include "apps/shell_integration.h"
7 #include "base/bind.h" 8 #include "base/bind.h"
8 #include "base/mac/bundle_locations.h" 9 #include "base/mac/bundle_locations.h"
9 #include "base/mac/mac_util.h" 10 #include "base/mac/mac_util.h"
10 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
11 #import "base/memory/scoped_nsobject.h" 12 #import "base/memory/scoped_nsobject.h"
12 #include "base/message_loop.h" 13 #include "base/message_loop.h"
13 #include "base/sys_string_conversions.h" 14 #include "base/sys_string_conversions.h"
14 #include "chrome/browser/first_run/first_run.h" 15 #include "chrome/browser/first_run/first_run.h"
15 #include "chrome/browser/first_run/first_run_dialog.h" 16 #include "chrome/browser/first_run/first_run_dialog.h"
16 #include "chrome/browser/profiles/profile.h" 17 #include "chrome/browser/profiles/profile.h"
17 #include "chrome/browser/search_engines/template_url_service.h" 18 #include "chrome/browser/search_engines/template_url_service.h"
18 #include "chrome/browser/search_engines/template_url_service_factory.h" 19 #include "chrome/browser/search_engines/template_url_service_factory.h"
19 #include "chrome/browser/shell_integration.h"
20 #include "chrome/common/chrome_version_info.h" 20 #include "chrome/common/chrome_version_info.h"
21 #include "chrome/common/url_constants.h" 21 #include "chrome/common/url_constants.h"
22 #include "googleurl/src/gurl.h" 22 #include "googleurl/src/gurl.h"
23 #include "grit/locale_settings.h" 23 #include "grit/locale_settings.h"
24 #import "third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h" 24 #import "third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h"
25 #include "ui/base/l10n/l10n_util_mac.h" 25 #include "ui/base/l10n/l10n_util_mac.h"
26 26
27 #if defined(GOOGLE_CHROME_BUILD) 27 #if defined(GOOGLE_CHROME_BUILD)
28 #include "base/prefs/pref_service.h" 28 #include "base/prefs/pref_service.h"
29 #import "chrome/app/breakpad_mac.h" 29 #import "chrome/app/breakpad_mac.h"
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 [NSApp stopModal]; 286 [NSApp stopModal];
287 } 287 }
288 288
289 - (IBAction)learnMore:(id)sender { 289 - (IBAction)learnMore:(id)sender {
290 NSString* urlStr = base::SysUTF8ToNSString(chrome::kLearnMoreReportingURL); 290 NSString* urlStr = base::SysUTF8ToNSString(chrome::kLearnMoreReportingURL);
291 NSURL* learnMoreUrl = [NSURL URLWithString:urlStr]; 291 NSURL* learnMoreUrl = [NSURL URLWithString:urlStr];
292 [[NSWorkspace sharedWorkspace] openURL:learnMoreUrl]; 292 [[NSWorkspace sharedWorkspace] openURL:learnMoreUrl];
293 } 293 }
294 294
295 @end 295 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698