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

Side by Side Diff: components/history/core/browser/android/sql_handler.cc

Issue 849323002: Componentize HistoryDatabase (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android compilation 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
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 #include "components/history/core/android/sql_handler.h" 5 #include "components/history/core/browser/android/sql_handler.h"
6 6
7 namespace history { 7 namespace history {
8 8
9 TableIDRow::TableIDRow() 9 TableIDRow::TableIDRow()
10 : url_id(0), 10 : url_id(0),
11 bookmarked(false) { 11 bookmarked(false) {
12 } 12 }
13 13
14 TableIDRow::~TableIDRow() { 14 TableIDRow::~TableIDRow() {
15 } 15 }
(...skipping 13 matching lines...) Expand all
29 return true; 29 return true;
30 } 30 }
31 return false; 31 return false;
32 } 32 }
33 33
34 bool SQLHandler::HasColumn(HistoryAndBookmarkRow::ColumnID id) { 34 bool SQLHandler::HasColumn(HistoryAndBookmarkRow::ColumnID id) {
35 return columns_.find(id) != columns_.end(); 35 return columns_.find(id) != columns_.end();
36 } 36 }
37 37
38 } // namespace history. 38 } // namespace history.
OLDNEW
« no previous file with comments | « components/history/core/browser/android/sql_handler.h ('k') | components/history/core/browser/android/urls_sql_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698