summaryrefslogtreecommitdiffstats
path: root/chrome/browser/search_engines/chrome_template_url_service_client.h
blob: 9bfe2ef7b74346cb14d0d02d7bbec6e8b2d52205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_SEARCH_ENGINES_CHROME_TEMPLATE_URL_SERVICE_CLIENT_H_
#define CHROME_BROWSER_SEARCH_ENGINES_CHROME_TEMPLATE_URL_SERVICE_CLIENT_H_

#include "components/search_engines/template_url_service_client.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"

class HistoryService;
class Profile;

// ChromeTemplateURLServiceClient provides keyword related history
// functionality for TemplateURLService.
class ChromeTemplateURLServiceClient : public TemplateURLServiceClient,
                                       public content::NotificationObserver {
 public:
  explicit ChromeTemplateURLServiceClient(Profile* profile);
  virtual ~ChromeTemplateURLServiceClient();

  // TemplateURLServiceClient:
  virtual void SetOwner(TemplateURLService* owner) override;
  virtual void DeleteAllSearchTermsForKeyword(
      history::KeywordID keyword_Id) override;
  virtual void SetKeywordSearchTermsForURL(const GURL& url,
                                           TemplateURLID id,
                                           const base::string16& term) override;
  virtual void AddKeywordGeneratedVisit(const GURL& url) override;
  virtual void RestoreExtensionInfoIfNecessary(
      TemplateURL* template_url) override;

  // content::NotificationObserver:
  virtual void Observe(int type,
                       const content::NotificationSource& source,
                       const content::NotificationDetails& details) override;

 private:
  Profile* profile_;
  TemplateURLService* owner_;
  content::NotificationRegistrar notification_registrar_;

  DISALLOW_COPY_AND_ASSIGN(ChromeTemplateURLServiceClient);
};

#endif  // CHROME_BROWSER_SEARCH_ENGINES_CHROME_TEMPLATE_URL_SERVICE_CLIENT_H_