Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / search / hotword_service.h
blob17bf69dfa37023f8c9e9b7399396378a4463175e
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_SEARCH_HOTWORD_SERVICE_H_
6 #define CHROME_BROWSER_SEARCH_HOTWORD_SERVICE_H_
8 #include "base/basictypes.h"
9 #include "components/browser_context_keyed_service/browser_context_keyed_service.h"
11 class Profile;
13 // Provides an interface for the Hotword component that does voice triggered
14 // search.
15 class HotwordService : public BrowserContextKeyedService {
16 public:
17 explicit HotwordService(Profile* profile);
18 virtual ~HotwordService();
20 private:
21 Profile* profile_;
23 DISALLOW_COPY_AND_ASSIGN(HotwordService);
26 #endif // CHROME_BROWSER_SEARCH_HOTWORD_SERVICE_H_