- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / history / android / urls_sql_handler.h
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_HISTORY_ANDROID_URLS_SQL_HANDLER_H_
6 #define CHROME_BROWSER_HISTORY_ANDROID_URLS_SQL_HANDLER_H_
7
8 #include "chrome/browser/history/android/sql_handler.h"
9
10 namespace history {
11
12 class HistoryDatabase;
13
14 // This class is the SQLHandler implementation for urls table.
15 class UrlsSQLHandler : public SQLHandler {
16  public:
17   explicit UrlsSQLHandler(HistoryDatabase* history_db);
18   virtual ~UrlsSQLHandler();
19
20   // Overriden from SQLHandler.
21   virtual bool Insert(HistoryAndBookmarkRow* row) OVERRIDE;
22   virtual bool Update(const HistoryAndBookmarkRow& row,
23                       const TableIDRows& ids_set) OVERRIDE;
24   virtual bool Delete(const TableIDRows& ids_set) OVERRIDE;
25
26  private:
27   HistoryDatabase* history_db_;
28
29   DISALLOW_COPY_AND_ASSIGN(UrlsSQLHandler);
30 };
31
32 }  // namespace history.
33
34 #endif  // CHROME_BROWSER_HISTORY_ANDROID_URLS_SQL_HANDLER_H_