| Index: apps/launcher.cc
|
| diff --git a/apps/launcher.cc b/apps/launcher.cc
|
| index d3bc43c1d66c905017bf663c4124cc32b7cbfada..684379016a38c5a64b36d6d6864cc1326dcf1d42 100644
|
| --- a/apps/launcher.cc
|
| +++ b/apps/launcher.cc
|
| @@ -133,6 +133,7 @@ class PlatformAppPathLauncher
|
| CheckWritableFiles(
|
| paths,
|
| profile_,
|
| + false,
|
| base::Bind(&PlatformAppPathLauncher::OnFileValid, this),
|
| base::Bind(&PlatformAppPathLauncher::OnFileInvalid, this));
|
| return;
|
| @@ -283,8 +284,12 @@ class PlatformAppPathLauncher
|
| return;
|
| }
|
|
|
| - GrantedFileEntry file_entry = CreateFileEntry(
|
| - profile_, extension_, host->render_process_host()->GetID(), file_path_);
|
| + GrantedFileEntry file_entry =
|
| + CreateFileEntry(profile_,
|
| + extension_,
|
| + host->render_process_host()->GetID(),
|
| + file_path_,
|
| + false);
|
| extensions::AppEventRouter::DispatchOnLaunchedEventWithFileEntry(
|
| profile_, extension_, handler_id_, mime_type, file_entry);
|
| }
|
|
|