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

Side by Side Diff: ios/public/provider/chrome/browser/voice/voice_search_controller.h

Issue 2562403003: Fix include guards of files in src/ios. (Closed)
Patch Set: Rebase on origin/master. Created 4 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
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 #ifndef IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_VOICE_SEARCH_CONTROLLER_IMPL_H_ 5 #ifndef IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_VOICE_SEARCH_CONTROLLER_H_
6 #define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_VOICE_SEARCH_CONTROLLER_IMPL_H_ 6 #define IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_VOICE_SEARCH_CONTROLLER_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 9
10 @class Tab; 10 @class Tab;
11 @class UIViewController; 11 @class UIViewController;
12 @protocol VoiceSearchControllerDelegate; 12 @protocol VoiceSearchControllerDelegate;
13 13
14 // TODO(crbug.com/607204): Convert to Objective-C class. 14 // TODO(crbug.com/607204): Convert to Objective-C class.
15 class VoiceSearchController 15 class VoiceSearchController
16 : public base::RefCountedThreadSafe<VoiceSearchController> { 16 : public base::RefCountedThreadSafe<VoiceSearchController> {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 50
51 protected: 51 protected:
52 virtual ~VoiceSearchController(); 52 virtual ~VoiceSearchController();
53 53
54 private: 54 private:
55 friend class base::RefCountedThreadSafe<VoiceSearchController>; 55 friend class base::RefCountedThreadSafe<VoiceSearchController>;
56 56
57 DISALLOW_COPY_AND_ASSIGN(VoiceSearchController); 57 DISALLOW_COPY_AND_ASSIGN(VoiceSearchController);
58 }; 58 };
59 59
60 #endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_VOICE_SEARCH_CONTROLLER_IMPL _H_ 60 #endif // IOS_PUBLIC_PROVIDER_CHROME_BROWSER_VOICE_VOICE_SEARCH_CONTROLLER_H_
OLDNEW
« no previous file with comments | « ios/public/provider/chrome/browser/spotlight/test_spotlight_provider.h ('k') | ios/web/public/crw_browsing_data_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698