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

Side by Side Diff: ash/test/test_launcher_delegate.cc

Issue 14533006: Drag and drop between app list and launcher - First patch (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Created 7 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 unified diff | Download patch | Annotate | Revision Log
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 #include "ash/test/test_launcher_delegate.h" 5 #include "ash/test/test_launcher_delegate.h"
6 6
7 #include "ash/launcher/launcher_model.h" 7 #include "ash/launcher/launcher_model.h"
8 #include "ash/launcher/launcher_util.h" 8 #include "ash/launcher/launcher_util.h"
9 #include "ash/wm/window_util.h" 9 #include "ash/wm/window_util.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 void TestLauncherDelegate::OnLauncherCreated(Launcher* launcher) { 124 void TestLauncherDelegate::OnLauncherCreated(Launcher* launcher) {
125 } 125 }
126 126
127 void TestLauncherDelegate::OnLauncherDestroyed(Launcher* launcher) { 127 void TestLauncherDelegate::OnLauncherDestroyed(Launcher* launcher) {
128 } 128 }
129 129
130 bool TestLauncherDelegate::IsPerAppLauncher() { 130 bool TestLauncherDelegate::IsPerAppLauncher() {
131 return true; 131 return true;
132 } 132 }
133 133
134 LauncherID TestLauncherDelegate::GetLauncherIDForAppID(
135 const std::string& app_id) {
136 return 0;
137 }
138
139 void TestLauncherDelegate::PinAppWithID(const std::string& app_id) {
140 }
141
142 void TestLauncherDelegate::UnpinAppsWithID(const std::string& app_id) {
143 }
144
134 } // namespace test 145 } // namespace test
135 } // namespace ash 146 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698