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

Side by Side Diff: chrome/browser/ui/webui/options/advanced_options_utils_mac.mm

Issue 10837331: Options: s/options2/options/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: wut Created 8 years, 4 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 <Cocoa/Cocoa.h> 5 #import <Cocoa/Cocoa.h>
6 6
7 #include "chrome/browser/ui/webui/options2/advanced_options_utils.h" 7 #include "chrome/browser/ui/webui/options/advanced_options_utils.h"
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/mac/mac_logging.h" 10 #include "base/mac/mac_logging.h"
11 #include "base/mac/scoped_aedesc.h" 11 #include "base/mac/scoped_aedesc.h"
12 12
13 using content::WebContents; 13 using content::WebContents;
14 14
15 namespace options { 15 namespace options {
16 16
17 void AdvancedOptionsUtilities::ShowNetworkProxySettings( 17 void AdvancedOptionsUtilities::ShowNetworkProxySettings(
(...skipping 21 matching lines...) Expand all
39 WebContents* web_contents) { 39 WebContents* web_contents) {
40 NSString* const kKeychainBundleId = @"com.apple.keychainaccess"; 40 NSString* const kKeychainBundleId = @"com.apple.keychainaccess";
41 [[NSWorkspace sharedWorkspace] 41 [[NSWorkspace sharedWorkspace]
42 launchAppWithBundleIdentifier:kKeychainBundleId 42 launchAppWithBundleIdentifier:kKeychainBundleId
43 options:0L 43 options:0L
44 additionalEventParamDescriptor:nil 44 additionalEventParamDescriptor:nil
45 launchIdentifier:nil]; 45 launchIdentifier:nil];
46 } 46 }
47 47
48 } // namespace options 48 } // namespace options
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698