| Index: chrome/browser/chromeos/file_manager/file_browser_handlers.cc
|
| diff --git a/chrome/browser/chromeos/file_manager/file_browser_handlers.cc b/chrome/browser/chromeos/file_manager/file_browser_handlers.cc
|
| index 3bb6982f2cd388598b4e3ecd14e6e08335aba7fd..e11d7298ab9578e7d2438650e34c0022d4087c4c 100644
|
| --- a/chrome/browser/chromeos/file_manager/file_browser_handlers.cc
|
| +++ b/chrome/browser/chromeos/file_manager/file_browser_handlers.cc
|
| @@ -18,7 +18,7 @@
|
| #include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/browser_finder.h"
|
| #include "chrome/common/extensions/api/file_browser_handlers/file_browser_handler.h"
|
| -#include "chrome/common/extensions/api/file_browser_private.h"
|
| +#include "chrome/common/extensions/api/file_manager_private.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/child_process_security_policy.h"
|
| #include "content/public/browser/render_process_host.h"
|
| @@ -303,8 +303,8 @@ void FileBrowserHandlerExecutor::ExecuteDoneOnUIThread(bool success) {
|
| if (!done_.is_null())
|
| done_.Run(
|
| success
|
| - ? extensions::api::file_browser_private::TASK_RESULT_MESSAGE_SENT
|
| - : extensions::api::file_browser_private::TASK_RESULT_FAILED);
|
| + ? extensions::api::file_manager_private::TASK_RESULT_MESSAGE_SENT
|
| + : extensions::api::file_manager_private::TASK_RESULT_FAILED);
|
| delete this;
|
| }
|
|
|
| @@ -473,7 +473,7 @@ bool ExecuteFileBrowserHandler(
|
| if (ShouldBeOpenedWithBrowser(extension->id(), action_id)) {
|
| const bool result = OpenFilesWithBrowser(profile, file_urls);
|
| if (result && !done.is_null())
|
| - done.Run(extensions::api::file_browser_private::TASK_RESULT_OPENED);
|
| + done.Run(extensions::api::file_manager_private::TASK_RESULT_OPENED);
|
| return result;
|
| }
|
|
|
|
|