blob: 45706761095b7c8f166f409d463a5c8a0715f4cd [file] [log] [blame]
// Copyright (c) 2012 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.
#include "chrome/browser/download/download_completion_blocker.h"
#include "base/logging.h"
DownloadCompletionBlocker::DownloadCompletionBlocker()
: is_complete_(false) {
}
DownloadCompletionBlocker::~DownloadCompletionBlocker() {
}
void DownloadCompletionBlocker::CompleteDownload() {
// Do not run |callback_| more than once.
if (is_complete_)
return;
is_complete_ = true;
if (callback_.is_null())
return;
callback_.Run();
// |callback_| may delete |this|, so do not rely on |this| after running
// |callback_|!
}