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

Side by Side Diff: chrome/browser/performance_monitor/database.h

Issue 18128002: Use a direct include of time headers in chrome/browser/, part 4. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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
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_PERFORMANCE_MONITOR_DATABASE_H_ 5 #ifndef CHROME_BROWSER_PERFORMANCE_MONITOR_DATABASE_H_
6 #define CHROME_BROWSER_PERFORMANCE_MONITOR_DATABASE_H_ 6 #define CHROME_BROWSER_PERFORMANCE_MONITOR_DATABASE_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/files/file_path.h" 12 #include "base/files/file_path.h"
13 #include "base/gtest_prod_util.h" 13 #include "base/gtest_prod_util.h"
14 #include "base/memory/linked_ptr.h" 14 #include "base/memory/linked_ptr.h"
15 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/time.h" 16 #include "base/time/time.h"
17 #include "chrome/browser/performance_monitor/constants.h" 17 #include "chrome/browser/performance_monitor/constants.h"
18 #include "chrome/browser/performance_monitor/event.h" 18 #include "chrome/browser/performance_monitor/event.h"
19 #include "chrome/browser/performance_monitor/metric.h" 19 #include "chrome/browser/performance_monitor/metric.h"
20 #include "third_party/leveldatabase/src/include/leveldb/db.h" 20 #include "third_party/leveldatabase/src/include/leveldb/db.h"
21 21
22 namespace performance_monitor { 22 namespace performance_monitor {
23 23
24 struct TimeRange { 24 struct TimeRange {
25 TimeRange(); 25 TimeRange();
26 TimeRange(base::Time start_time, base::Time end_time); 26 TimeRange(base::Time start_time, base::Time end_time);
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 // Indicates whether or not the database successfully initialized. If false, 314 // Indicates whether or not the database successfully initialized. If false,
315 // the Create() call will return NULL. 315 // the Create() call will return NULL.
316 bool valid_; 316 bool valid_;
317 317
318 DISALLOW_COPY_AND_ASSIGN(Database); 318 DISALLOW_COPY_AND_ASSIGN(Database);
319 }; 319 };
320 320
321 } // namespace performance_monitor 321 } // namespace performance_monitor
322 322
323 #endif // CHROME_BROWSER_PERFORMANCE_MONITOR_DATABASE_H_ 323 #endif // CHROME_BROWSER_PERFORMANCE_MONITOR_DATABASE_H_
OLDNEW
« no previous file with comments | « chrome/browser/performance_monitor/constants.h ('k') | chrome/browser/performance_monitor/database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698