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

Side by Side Diff: chrome/browser/speech/tts_linux.cc

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 12 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
« no previous file with comments | « chrome/browser/speech/tts_controller_impl.cc ('k') | chrome/browser/speech/tts_mac.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include <math.h> 5 #include <math.h>
6 #include <stddef.h>
6 7
7 #include <map> 8 #include <map>
8 9
9 #include "base/command_line.h" 10 #include "base/command_line.h"
10 #include "base/debug/leak_annotations.h" 11 #include "base/debug/leak_annotations.h"
12 #include "base/macros.h"
11 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
12 #include "base/memory/singleton.h" 14 #include "base/memory/singleton.h"
13 #include "base/synchronization/lock.h" 15 #include "base/synchronization/lock.h"
14 #include "chrome/browser/speech/tts_platform.h" 16 #include "chrome/browser/speech/tts_platform.h"
15 #include "content/public/browser/browser_thread.h" 17 #include "content/public/browser/browser_thread.h"
16 #include "content/public/common/content_switches.h" 18 #include "content/public/common/content_switches.h"
17 19
18 #include "library_loaders/libspeechd.h" 20 #include "library_loaders/libspeechd.h"
19 21
20 using content::BrowserThread; 22 using content::BrowserThread;
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 TtsPlatformImplLinux* TtsPlatformImplLinux::GetInstance() { 350 TtsPlatformImplLinux* TtsPlatformImplLinux::GetInstance() {
349 return base::Singleton< 351 return base::Singleton<
350 TtsPlatformImplLinux, 352 TtsPlatformImplLinux,
351 base::LeakySingletonTraits<TtsPlatformImplLinux>>::get(); 353 base::LeakySingletonTraits<TtsPlatformImplLinux>>::get();
352 } 354 }
353 355
354 // static 356 // static
355 TtsPlatformImpl* TtsPlatformImpl::GetInstance() { 357 TtsPlatformImpl* TtsPlatformImpl::GetInstance() {
356 return TtsPlatformImplLinux::GetInstance(); 358 return TtsPlatformImplLinux::GetInstance();
357 } 359 }
OLDNEW
« no previous file with comments | « chrome/browser/speech/tts_controller_impl.cc ('k') | chrome/browser/speech/tts_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698