| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "win8/viewer/metro_viewer_process_host.h" | 5 #include "win8/viewer/metro_viewer_process_host.h" |
| 6 | 6 |
| 7 #include <shlobj.h> | 7 #include <shlobj.h> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 } | 58 } |
| 59 | 59 |
| 60 MetroViewerProcessHost::~MetroViewerProcessHost() { | 60 MetroViewerProcessHost::~MetroViewerProcessHost() { |
| 61 if (!channel_) { | 61 if (!channel_) { |
| 62 instance_ = NULL; | 62 instance_ = NULL; |
| 63 return; | 63 return; |
| 64 } | 64 } |
| 65 | 65 |
| 66 base::ProcessId viewer_process_id = GetViewerProcessId(); | 66 base::ProcessId viewer_process_id = GetViewerProcessId(); |
| 67 channel_->Close(); | 67 channel_->Close(); |
| 68 if (message_filter_) { | 68 if (message_filter_.get()) { |
| 69 // Wait for the viewer process to go away. | 69 // Wait for the viewer process to go away. |
| 70 if (viewer_process_id != base::kNullProcessId) { | 70 if (viewer_process_id != base::kNullProcessId) { |
| 71 base::ProcessHandle viewer_process = NULL; | 71 base::ProcessHandle viewer_process = NULL; |
| 72 base::OpenProcessHandleWithAccess( | 72 base::OpenProcessHandleWithAccess( |
| 73 viewer_process_id, | 73 viewer_process_id, |
| 74 PROCESS_QUERY_INFORMATION | SYNCHRONIZE, | 74 PROCESS_QUERY_INFORMATION | SYNCHRONIZE, |
| 75 &viewer_process); | 75 &viewer_process); |
| 76 if (viewer_process) { | 76 if (viewer_process) { |
| 77 ::WaitForSingleObject(viewer_process, INFINITE); | 77 ::WaitForSingleObject(viewer_process, INFINITE); |
| 78 ::CloseHandle(viewer_process); | 78 ::CloseHandle(viewer_process); |
| 79 } | 79 } |
| 80 } | 80 } |
| 81 channel_->RemoveFilter(message_filter_); | 81 channel_->RemoveFilter(message_filter_.get()); |
| 82 } | 82 } |
| 83 instance_ = NULL; | 83 instance_ = NULL; |
| 84 } | 84 } |
| 85 | 85 |
| 86 base::ProcessId MetroViewerProcessHost::GetViewerProcessId() { | 86 base::ProcessId MetroViewerProcessHost::GetViewerProcessId() { |
| 87 if (channel_) | 87 if (channel_) |
| 88 return channel_->GetPeerPID(); | 88 return channel_->GetPeerPID(); |
| 89 return base::kNullProcessId; | 89 return base::kNullProcessId; |
| 90 } | 90 } |
| 91 | 91 |
| 92 bool MetroViewerProcessHost::LaunchViewerAndWaitForConnection( | 92 bool MetroViewerProcessHost::LaunchViewerAndWaitForConnection( |
| 93 const base::string16& app_user_model_id) { | 93 const base::string16& app_user_model_id) { |
| 94 DCHECK_EQ(base::kNullProcessId, channel_->GetPeerPID()); | 94 DCHECK_EQ(base::kNullProcessId, channel_->GetPeerPID()); |
| 95 | 95 |
| 96 channel_connected_event_.reset(new base::WaitableEvent(false, false)); | 96 channel_connected_event_.reset(new base::WaitableEvent(false, false)); |
| 97 | 97 |
| 98 message_filter_ = new InternalMessageFilter(this); | 98 message_filter_ = new InternalMessageFilter(this); |
| 99 channel_->AddFilter(message_filter_); | 99 channel_->AddFilter(message_filter_.get()); |
| 100 | 100 |
| 101 if (base::win::GetVersion() >= base::win::VERSION_WIN8) { | 101 if (base::win::GetVersion() >= base::win::VERSION_WIN8) { |
| 102 base::win::ScopedComPtr<IApplicationActivationManager> activator; | 102 base::win::ScopedComPtr<IApplicationActivationManager> activator; |
| 103 HRESULT hr = activator.CreateInstance(CLSID_ApplicationActivationManager); | 103 HRESULT hr = activator.CreateInstance(CLSID_ApplicationActivationManager); |
| 104 if (SUCCEEDED(hr)) { | 104 if (SUCCEEDED(hr)) { |
| 105 DWORD pid = 0; | 105 DWORD pid = 0; |
| 106 // Use the "connect" verb to | 106 // Use the "connect" verb to |
| 107 hr = activator->ActivateApplication( | 107 hr = activator->ActivateApplication( |
| 108 app_user_model_id.c_str(), kMetroViewerConnectVerb, AO_NONE, &pid); | 108 app_user_model_id.c_str(), kMetroViewerConnectVerb, AO_NONE, &pid); |
| 109 } | 109 } |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 const base::FilePath& folder) { | 335 const base::FilePath& folder) { |
| 336 if (success) | 336 if (success) |
| 337 select_folder_completion_callback_.Run(base::FilePath(folder), 0, NULL); | 337 select_folder_completion_callback_.Run(base::FilePath(folder), 0, NULL); |
| 338 else | 338 else |
| 339 failure_callback_.Run(NULL); | 339 failure_callback_.Run(NULL); |
| 340 select_folder_completion_callback_.Reset(); | 340 select_folder_completion_callback_.Reset(); |
| 341 failure_callback_.Reset(); | 341 failure_callback_.Reset(); |
| 342 } | 342 } |
| 343 | 343 |
| 344 } // namespace win8 | 344 } // namespace win8 |
| OLD | NEW |