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

Side by Side Diff: chrome/browser/profiles/profile.h

Issue 9568002: Renamed speech input implementation from to speech_recognition_*. The namespace has been renamed fr… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 9 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
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 // This class gathers state related to a single user profile. 5 // This class gathers state related to a single user profile.
6 6
7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_H_ 7 #ifndef CHROME_BROWSER_PROFILES_PROFILE_H_
8 #define CHROME_BROWSER_PROFILES_PROFILE_H_ 8 #define CHROME_BROWSER_PROFILES_PROFILE_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 namespace chromeos { 53 namespace chromeos {
54 class LibCrosServiceLibraryImpl; 54 class LibCrosServiceLibraryImpl;
55 class ResetDefaultProxyConfigServiceTask; 55 class ResetDefaultProxyConfigServiceTask;
56 } 56 }
57 57
58 namespace chrome_browser_net { 58 namespace chrome_browser_net {
59 class Predictor; 59 class Predictor;
60 } 60 }
61 61
62 namespace content { 62 namespace content {
63 class SpeechInputPreferences; 63 class SpeechRecognitionPreferences;
64 class WebUI; 64 class WebUI;
65 } 65 }
66 66
67 namespace android { 67 namespace android {
68 class TabContentsProvider; 68 class TabContentsProvider;
69 } 69 }
70 70
71 namespace fileapi { 71 namespace fileapi {
72 class FileSystemContext; 72 class FileSystemContext;
73 } 73 }
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 struct hash<Profile*> { 525 struct hash<Profile*> {
526 std::size_t operator()(Profile* const& p) const { 526 std::size_t operator()(Profile* const& p) const {
527 return reinterpret_cast<std::size_t>(p); 527 return reinterpret_cast<std::size_t>(p);
528 } 528 }
529 }; 529 };
530 530
531 } // namespace BASE_HASH_NAMESPACE 531 } // namespace BASE_HASH_NAMESPACE
532 #endif 532 #endif
533 533
534 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ 534 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698