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

Side by Side Diff: chrome/browser/background/background_mode_manager_mac.mm

Issue 105193002: Replace string16 with base::string16. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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) 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 "base/bind.h" 5 #include "base/bind.h"
6 #include "base/command_line.h" 6 #include "base/command_line.h"
7 #include "base/mac/mac_util.h" 7 #include "base/mac/mac_util.h"
8 #include "base/prefs/pref_service.h" 8 #include "base/prefs/pref_service.h"
9 #include "chrome/browser/background/background_mode_manager.h" 9 #include "chrome/browser/background/background_mode_manager.h"
10 #include "chrome/browser/browser_process.h" 10 #include "chrome/browser/browser_process.h"
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 base::Bind(DisableLaunchOnStartupOnFileThread)); 148 base::Bind(DisableLaunchOnStartupOnFileThread));
149 } 149 }
150 } 150 }
151 151
152 void BackgroundModeManager::DisplayAppInstalledNotification( 152 void BackgroundModeManager::DisplayAppInstalledNotification(
153 const extensions::Extension* extension) { 153 const extensions::Extension* extension) {
154 // TODO(atwilson): Display a platform-appropriate notification here. 154 // TODO(atwilson): Display a platform-appropriate notification here.
155 // http://crbug.com/74970 155 // http://crbug.com/74970
156 } 156 }
157 157
158 string16 BackgroundModeManager::GetPreferencesMenuLabel() { 158 base::string16 BackgroundModeManager::GetPreferencesMenuLabel() {
159 return l10n_util::GetStringUTF16(IDS_OPTIONS); 159 return l10n_util::GetStringUTF16(IDS_OPTIONS);
160 } 160 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698