Revert "Reland c91b178b07b0d - Delete dead signin code (SigninGlobalError)"
[chromium-blink-merge.git] / chrome / browser / download / download_browsertest.h
blobc1ef2271c10b9d6e7c9ddcaf7edd32fb38825c74
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_BROWSERTEST_H_
6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_BROWSERTEST_H_
8 #include "base/basictypes.h"
9 #include "content/public/test/download_test_observer.h"
11 // DownloadTestObserver subclass that observes a download until it transitions
12 // from IN_PROGRESS to another state, but only after StartObserving() is called.
13 class DownloadTestObserverNotInProgress : public content::DownloadTestObserver {
14 public:
15 DownloadTestObserverNotInProgress(content::DownloadManager* download_manager,
16 size_t count);
17 ~DownloadTestObserverNotInProgress() override;
19 void StartObserving();
21 private:
22 bool IsDownloadInFinalState(content::DownloadItem* download) override;
24 bool started_observing_;
26 DISALLOW_COPY_AND_ASSIGN(DownloadTestObserverNotInProgress);
29 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_BROWSERTEST_H_