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

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

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs Created 6 years, 2 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_HISTORY_ANDROID_URLS_SQL_HANDLER_H_ 5 #ifndef CHROME_BROWSER_HISTORY_ANDROID_URLS_SQL_HANDLER_H_
6 #define CHROME_BROWSER_HISTORY_ANDROID_URLS_SQL_HANDLER_H_ 6 #define CHROME_BROWSER_HISTORY_ANDROID_URLS_SQL_HANDLER_H_
7 7
8 #include "chrome/browser/history/android/sql_handler.h" 8 #include "chrome/browser/history/android/sql_handler.h"
9 9
10 namespace history { 10 namespace history {
11 11
12 class HistoryDatabase; 12 class HistoryDatabase;
13 13
14 // This class is the SQLHandler implementation for urls table. 14 // This class is the SQLHandler implementation for urls table.
15 class UrlsSQLHandler : public SQLHandler { 15 class UrlsSQLHandler : public SQLHandler {
16 public: 16 public:
17 explicit UrlsSQLHandler(HistoryDatabase* history_db); 17 explicit UrlsSQLHandler(HistoryDatabase* history_db);
18 virtual ~UrlsSQLHandler(); 18 virtual ~UrlsSQLHandler();
19 19
20 // Overriden from SQLHandler. 20 // Overriden from SQLHandler.
21 virtual bool Insert(HistoryAndBookmarkRow* row) OVERRIDE; 21 virtual bool Insert(HistoryAndBookmarkRow* row) override;
22 virtual bool Update(const HistoryAndBookmarkRow& row, 22 virtual bool Update(const HistoryAndBookmarkRow& row,
23 const TableIDRows& ids_set) OVERRIDE; 23 const TableIDRows& ids_set) override;
24 virtual bool Delete(const TableIDRows& ids_set) OVERRIDE; 24 virtual bool Delete(const TableIDRows& ids_set) override;
25 25
26 private: 26 private:
27 HistoryDatabase* history_db_; 27 HistoryDatabase* history_db_;
28 28
29 DISALLOW_COPY_AND_ASSIGN(UrlsSQLHandler); 29 DISALLOW_COPY_AND_ASSIGN(UrlsSQLHandler);
30 }; 30 };
31 31
32 } // namespace history. 32 } // namespace history.
33 33
34 #endif // CHROME_BROWSER_HISTORY_ANDROID_URLS_SQL_HANDLER_H_ 34 #endif // CHROME_BROWSER_HISTORY_ANDROID_URLS_SQL_HANDLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/history/android/sqlite_cursor_unittest.cc ('k') | chrome/browser/history/android/visit_sql_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698