Index: chrome/browser/history/android/urls_sql_handler.h |
diff --git a/chrome/browser/history/android/urls_sql_handler.h b/chrome/browser/history/android/urls_sql_handler.h |
deleted file mode 100644 |
index f3df1473dfdcdba316cb912800f123e978d587e5..0000000000000000000000000000000000000000 |
--- a/chrome/browser/history/android/urls_sql_handler.h |
+++ /dev/null |
@@ -1,34 +0,0 @@ |
-// Copyright (c) 2012 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_HISTORY_ANDROID_URLS_SQL_HANDLER_H_ |
-#define CHROME_BROWSER_HISTORY_ANDROID_URLS_SQL_HANDLER_H_ |
- |
-#include "components/history/core/android/sql_handler.h" |
- |
-namespace history { |
- |
-class URLDatabase; |
- |
-// This class is the SQLHandler implementation for urls table. |
-class UrlsSQLHandler : public SQLHandler { |
- public: |
- explicit UrlsSQLHandler(URLDatabase* url_db); |
- virtual ~UrlsSQLHandler(); |
- |
- // Overriden from SQLHandler. |
- virtual bool Insert(HistoryAndBookmarkRow* row) override; |
- virtual bool Update(const HistoryAndBookmarkRow& row, |
- const TableIDRows& ids_set) override; |
- virtual bool Delete(const TableIDRows& ids_set) override; |
- |
- private: |
- URLDatabase* url_db_; |
- |
- DISALLOW_COPY_AND_ASSIGN(UrlsSQLHandler); |
-}; |
- |
-} // namespace history. |
- |
-#endif // CHROME_BROWSER_HISTORY_ANDROID_URLS_SQL_HANDLER_H_ |