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

Side by Side Diff: chrome/browser/history/visit_database.h

Issue 10014007: Change 9789001: attempt #3 after fixing the problems with linux Created by Wei Li: https://chromium… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/history/history_types.h ('k') | chrome/browser/history/visit_database.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_VISIT_DATABASE_H_ 5 #ifndef CHROME_BROWSER_HISTORY_VISIT_DATABASE_H_
6 #define CHROME_BROWSER_HISTORY_VISIT_DATABASE_H_ 6 #define CHROME_BROWSER_HISTORY_VISIT_DATABASE_H_
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/history/history_types.h" 9 #include "chrome/browser/history/history_types.h"
10 10
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 bool InitVisitTable(); 181 bool InitVisitTable();
182 182
183 // Convenience to fill a VisitRow. Assumes the visit values are bound starting 183 // Convenience to fill a VisitRow. Assumes the visit values are bound starting
184 // at index 0. 184 // at index 0.
185 static void FillVisitRow(sql::Statement& statement, VisitRow* visit); 185 static void FillVisitRow(sql::Statement& statement, VisitRow* visit);
186 186
187 // Convenience to fill a VisitVector. Assumes that statement.step() 187 // Convenience to fill a VisitVector. Assumes that statement.step()
188 // hasn't happened yet. 188 // hasn't happened yet.
189 static bool FillVisitVector(sql::Statement& statement, VisitVector* visits); 189 static bool FillVisitVector(sql::Statement& statement, VisitVector* visits);
190 190
191 // Called by the derived classes to migrate the older visits table which
192 // don't have visit_duration column yet.
193 bool MigrateVisitsWithoutDuration();
194
191 private: 195 private:
192 196
193 DISALLOW_COPY_AND_ASSIGN(VisitDatabase); 197 DISALLOW_COPY_AND_ASSIGN(VisitDatabase);
194 }; 198 };
195 199
196 } // history 200 } // history
197 201
198 #endif // CHROME_BROWSER_HISTORY_VISIT_DATABASE_H_ 202 #endif // CHROME_BROWSER_HISTORY_VISIT_DATABASE_H_
OLDNEW
« no previous file with comments | « chrome/browser/history/history_types.h ('k') | chrome/browser/history/visit_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698