• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.
4 
5 #ifndef CHROME_BROWSER_SEARCH_HOTWORD_SERVICE_H_
6 #define CHROME_BROWSER_SEARCH_HOTWORD_SERVICE_H_
7 
8 #include "base/basictypes.h"
9 #include "components/browser_context_keyed_service/browser_context_keyed_service.h"
10 
11 class Profile;
12 
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();
19 
20  private:
21   Profile* profile_;
22 
23   DISALLOW_COPY_AND_ASSIGN(HotwordService);
24 };
25 
26 #endif  // CHROME_BROWSER_SEARCH_HOTWORD_SERVICE_H_
27