blob: c917f25b11f9eb89391fd5cb9e2b54f1d092d547 [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 "content/test/test_content_browser_client.h"
#include "base/files/file_path.h"
#include "base/logging.h"
namespace content {
TestContentBrowserClient::TestContentBrowserClient() {
}
TestContentBrowserClient::~TestContentBrowserClient() {
}
base::FilePath TestContentBrowserClient::GetDefaultDownloadDirectory() {
if (!download_dir_.IsValid()) {
bool result = download_dir_.CreateUniqueTempDir();
CHECK(result);
}
return download_dir_.path();
}
} // namespace content