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

Side by Side Diff: chrome/browser/history/android/android_urls_sql_handler.h

Issue 813503003: Move files from chrome/browser/history to components/history (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@favicon-owners
Patch Set: Created 5 years, 11 months 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
(Empty)
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_ANDROID_URLS_SQL_HANDLER_H_
6 #define CHROME_BROWSER_HISTORY_ANDROID_ANDROID_URLS_SQL_HANDLER_H_
7
8 #include "components/history/core/android/sql_handler.h"
9
10 namespace history {
11
12 class AndroidURLsDatabase;
13
14 // The SQLHanlder implementation for android_urls table.
15 class AndroidURLsSQLHandler : public SQLHandler {
16 public:
17 explicit AndroidURLsSQLHandler(AndroidURLsDatabase* android_urls_db);
18 virtual ~AndroidURLsSQLHandler();
19
20 virtual bool Update(const HistoryAndBookmarkRow& row,
21 const TableIDRows& ids_set) override;
22
23 virtual bool Insert(HistoryAndBookmarkRow* row) override;
24
25 virtual bool Delete(const TableIDRows& ids_set) override;
26
27 private:
28 AndroidURLsDatabase* android_urls_db_;
29
30 DISALLOW_COPY_AND_ASSIGN(AndroidURLsSQLHandler);
31 };
32
33 } // namespace history.
34
35 #endif // CHROME_BROWSER_HISTORY_ANDROID_ANDROID_URLS_SQL_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698