| OLD | NEW |
| 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 Loading... |
| 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. |
| OLD | NEW |