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

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: Rebased from master. 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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 struct hash<Profile*> { 522 struct hash<Profile*> {
523 std::size_t operator()(Profile* const& p) const { 523 std::size_t operator()(Profile* const& p) const {
524 return reinterpret_cast<std::size_t>(p); 524 return reinterpret_cast<std::size_t>(p);
525 } 525 }
526 }; 526 };
527 527
528 } // namespace BASE_HASH_NAMESPACE 528 } // namespace BASE_HASH_NAMESPACE
529 #endif 529 #endif
530 530
531 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_ 531 #endif // CHROME_BROWSER_PROFILES_PROFILE_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/off_the_record_profile_impl.cc ('k') | chrome/browser/profiles/profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698