blob: 9d8d1cca0789d38ba3b735b6d8dcfc3dd2384a6e [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_AFTER_STARTUP_TASK_UTILS_H_
#define CHROME_BROWSER_AFTER_STARTUP_TASK_UTILS_H_
#include "base/bind.h"
#include "base/callback.h"
#include "base/location.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
namespace android {
class AfterStartupTaskUtilsJNI;
}
namespace base {
class SequencedTaskRunner;
}
class AfterStartupTaskUtils {
public:
// Observes startup and when complete runs tasks that have accrued.
static void StartMonitoringStartup();
// Used to augment the behavior of BrowserThread::PostAfterStartupTask
// for chrome. Tasks are queued until startup is complete.
// Note: see browser_thread.h
static void PostTask(
const base::Location& from_here,
const scoped_refptr<base::SequencedTaskRunner>& destination_runner,
base::OnceClosure task);
// Returns true if browser startup is complete. Only use this on a one-off
// basis; If you need to poll this function constantly, use the above
// PostTask() API instead.
static bool IsBrowserStartupComplete();
// For use by unit tests where we don't have normal content loading
// infrastructure and thus StartMonitoringStartup() is unsuitable.
static void SetBrowserStartupIsCompleteForTesting();
static void UnsafeResetForTesting();
// Normally on startup, some tasks are scheduled with a random delay. This is
// not desirable during testing where it adds non-determinism and slows down
// test execution.
static void DisableScheduleTaskDelayForTesting();
private:
// TODO(wkorman): Look into why Android calls
// SetBrowserStartupIsComplete() directly. Ideally it would use
// StartMonitoringStartup() as the normal approach.
friend class android::AfterStartupTaskUtilsJNI;
static void SetBrowserStartupIsComplete();
DISALLOW_IMPLICIT_CONSTRUCTORS(AfterStartupTaskUtils);
};
#endif // CHROME_BROWSER_AFTER_STARTUP_TASK_UTILS_H_