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

Side by Side Diff: ash/shell_delegate.h

Issue 10456045: Refactored mobile activation engine outside of WebUI handler in order to expose its state to other … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ash/shell/shell_delegate_impl.cc ('k') | ash/test/test_shell_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef ASH_SHELL_DELEGATE_H_ 5 #ifndef ASH_SHELL_DELEGATE_H_
6 #define ASH_SHELL_DELEGATE_H_ 6 #define ASH_SHELL_DELEGATE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 // Invoked when the user presses the Search key. 71 // Invoked when the user presses the Search key.
72 virtual void Search() = 0; 72 virtual void Search() = 0;
73 73
74 // Invoked when the user uses Ctrl-M to open file manager. 74 // Invoked when the user uses Ctrl-M to open file manager.
75 virtual void OpenFileManager() = 0; 75 virtual void OpenFileManager() = 0;
76 76
77 // Invoked when the user opens Crosh. 77 // Invoked when the user opens Crosh.
78 virtual void OpenCrosh() = 0; 78 virtual void OpenCrosh() = 0;
79 79
80 // Invoked when the user needs to set up mobile networking. 80 // Invoked when the user needs to set up mobile networking.
81 virtual void OpenMobileSetup() = 0; 81 virtual void OpenMobileSetup(const std::string& service_path) = 0;
82 82
83 // Invoked when the user uses Shift+Ctrl+T to restore the closed tab. 83 // Invoked when the user uses Shift+Ctrl+T to restore the closed tab.
84 virtual void RestoreTab() = 0; 84 virtual void RestoreTab() = 0;
85 85
86 // Shows the keyboard shortcut overlay. 86 // Shows the keyboard shortcut overlay.
87 virtual void ShowKeyboardOverlay() = 0; 87 virtual void ShowKeyboardOverlay() = 0;
88 88
89 // Shows the task manager window. 89 // Shows the task manager window.
90 virtual void ShowTaskManager() = 0; 90 virtual void ShowTaskManager() = 0;
91 91
(...skipping 23 matching lines...) Expand all
115 // Creates a user wallpaper delegate. Shell takes ownership of the delegate. 115 // Creates a user wallpaper delegate. Shell takes ownership of the delegate.
116 virtual UserWallpaperDelegate* CreateUserWallpaperDelegate() = 0; 116 virtual UserWallpaperDelegate* CreateUserWallpaperDelegate() = 0;
117 117
118 // Creates a user action client. Shell takes ownership of the object. 118 // Creates a user action client. Shell takes ownership of the object.
119 virtual aura::client::UserActionClient* CreateUserActionClient() = 0; 119 virtual aura::client::UserActionClient* CreateUserActionClient() = 0;
120 }; 120 };
121 121
122 } // namespace ash 122 } // namespace ash
123 123
124 #endif // ASH_SHELL_DELEGATE_H_ 124 #endif // ASH_SHELL_DELEGATE_H_
OLDNEW
« no previous file with comments | « ash/shell/shell_delegate_impl.cc ('k') | ash/test/test_shell_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698