HomeSort by relevance Sort by last modified time
    Searched defs:BootTimesLoader (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/chrome/browser/chromeos/
boot_times_loader.h 22 // BootTimesLoader loads the bootimes of Chrome OS from the file system.
24 // BootTimesLoader calls back to a method of your choice with the boot times.
25 // To use BootTimesLoader, do the following:
27 // . In your class define a member field of type chromeos::BootTimesLoader and
30 // void OnBootTimesLoaded(const BootTimesLoader::BootTimes& boot_times);
32 class BootTimesLoader : public content::NotificationObserver {
34 BootTimesLoader();
35 virtual ~BootTimesLoader();
37 static BootTimesLoader* Get();
80 // BootTimesLoader calls into the Backend on the file thread to loa
    [all...]
boot_times_loader.cc 111 static base::LazyInstance<BootTimesLoader> g_boot_times_loader =
114 BootTimesLoader::BootTimesLoader()
121 BootTimesLoader::~BootTimesLoader() {}
124 BootTimesLoader* BootTimesLoader::Get() {
158 void BootTimesLoader::WriteTimes(
218 void BootTimesLoader::LoginDone() {
240 void BootTimesLoader::WriteLogoutTimes()
    [all...]
  /external/chromium/chrome/browser/chromeos/
boot_times_loader.h 20 // BootTimesLoader loads the bootimes of Chrome OS from the file system.
22 // BootTimesLoader calls back to a method of your choice with the boot times.
23 // To use BootTimesLoader do the following:
25 // . In your class define a member field of type chromeos::BootTimesLoader and
28 // void OnBootTimesLoader(chromeos::BootTimesLoader::Handle,
29 // BootTimesLoader::BootTimes boot_times);
31 class BootTimesLoader
35 BootTimesLoader();
65 static BootTimesLoader* Get();
113 // BootTimesLoader calls into the Backend on the file thread to loa
    [all...]
boot_times_loader.cc 65 static base::LazyInstance<BootTimesLoader> g_boot_times_loader(
68 BootTimesLoader::BootTimesLoader()
76 BootTimesLoader* BootTimesLoader::Get() {
80 BootTimesLoader::Handle BootTimesLoader::GetBootTimes(
82 BootTimesLoader::GetBootTimesCallback* callback) {
92 // replaced with a mock of BootTimesLoader.
132 static void SendBootTimesToUMA(const BootTimesLoader::BootTimes& boot_times)
    [all...]

Completed in 40 milliseconds