Remove no longer needed toolbar layer method.
[chromium-blink-merge.git] / chrome / browser / platform_util.cc
blob5cd2e45ef73213007c86668bb94730bee4517008
1 // Copyright 2015 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 #include "chrome/browser/platform_util.h"
7 #include "base/files/file.h"
8 #include "base/files/file_util.h"
9 #include "base/logging.h"
10 #include "chrome/browser/platform_util_internal.h"
11 #include "content/public/browser/browser_thread.h"
13 using content::BrowserThread;
15 namespace platform_util {
17 namespace {
19 bool shell_operations_allowed = true;
21 void VerifyAndOpenItemOnBlockingThread(const base::FilePath& path,
22 OpenItemType type,
23 const OpenOperationCallback& callback) {
24 base::File target_item(path, base::File::FLAG_OPEN | base::File::FLAG_READ);
25 if (!base::PathExists(path)) {
26 if (!callback.is_null())
27 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
28 base::Bind(callback, OPEN_FAILED_PATH_NOT_FOUND));
29 return;
31 if (base::DirectoryExists(path) != (type == OPEN_FOLDER)) {
32 if (!callback.is_null())
33 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
34 base::Bind(callback, OPEN_FAILED_INVALID_TYPE));
35 return;
38 if (shell_operations_allowed)
39 internal::PlatformOpenVerifiedItem(path, type);
40 if (!callback.is_null())
41 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
42 base::Bind(callback, OPEN_SUCCEEDED));
45 } // namespace
47 namespace internal {
49 void DisableShellOperationsForTesting() {
50 shell_operations_allowed = false;
53 } // namespace internal
55 void OpenItem(Profile* profile,
56 const base::FilePath& full_path,
57 OpenItemType item_type,
58 const OpenOperationCallback& callback) {
59 DCHECK_CURRENTLY_ON(BrowserThread::UI);
60 BrowserThread::PostBlockingPoolTask(
61 FROM_HERE, base::Bind(&VerifyAndOpenItemOnBlockingThread, full_path,
62 item_type, callback));
65 } // namespace platform_util