Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Unified Diff: ui/aura/remote_window_tree_host_win.cc

Issue 297713002: Fixes crash in RemoteWindowTreeHostWin::HandleActivateDesktop (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: follow old pattern Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/aura/remote_window_tree_host_win.h ('k') | win8/viewer/metro_viewer_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/remote_window_tree_host_win.cc
diff --git a/ui/aura/remote_window_tree_host_win.cc b/ui/aura/remote_window_tree_host_win.cc
index 2dbc0e7a91c7608e8765e151ec6c1770427f8e46..01c10a9ee803474548d67318730817f4a730719e 100644
--- a/ui/aura/remote_window_tree_host_win.cc
+++ b/ui/aura/remote_window_tree_host_win.cc
@@ -135,13 +135,6 @@ void HandleSelectFolder(const base::string16& title,
on_failure);
}
-void HandleActivateDesktop(const base::FilePath& shortcut,
- bool ash_exit) {
- DCHECK(aura::RemoteWindowTreeHostWin::Instance());
- aura::RemoteWindowTreeHostWin::Instance()->HandleActivateDesktop(shortcut,
- ash_exit);
-}
-
void HandleMetroExit() {
DCHECK(aura::RemoteWindowTreeHostWin::Instance());
aura::RemoteWindowTreeHostWin::Instance()->HandleMetroExit();
@@ -253,14 +246,6 @@ void RemoteWindowTreeHostWin::HandleOpenURLOnDesktop(
host_->Send(new MetroViewerHostMsg_OpenURLOnDesktop(shortcut, url));
}
-void RemoteWindowTreeHostWin::HandleActivateDesktop(
- const base::FilePath& shortcut,
- bool ash_exit) {
- if (!host_)
- return;
- host_->Send(new MetroViewerHostMsg_ActivateDesktop(shortcut, ash_exit));
-}
-
void RemoteWindowTreeHostWin::HandleMetroExit() {
if (!host_)
return;
« no previous file with comments | « ui/aura/remote_window_tree_host_win.h ('k') | win8/viewer/metro_viewer_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698