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

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

Issue 89243003: Move EmptyString, kWhitespace and the BOM to base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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/launcher_delegate_impl.cc ('k') | base/strings/string_util.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 #include "ash/test/test_launcher_delegate.h" 5 #include "ash/test/test_launcher_delegate.h"
6 6
7 #include "ash/launcher/launcher_item_delegate_manager.h" 7 #include "ash/launcher/launcher_item_delegate_manager.h"
8 #include "ash/shelf/shelf_model.h" 8 #include "ash/shelf/shelf_model.h"
9 #include "ash/shelf/shelf_util.h" 9 #include "ash/shelf/shelf_util.h"
10 #include "ash/shell.h" 10 #include "ash/shell.h"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 void TestLauncherDelegate::OnLauncherDestroyed(Launcher* launcher) { 84 void TestLauncherDelegate::OnLauncherDestroyed(Launcher* launcher) {
85 } 85 }
86 86
87 LauncherID TestLauncherDelegate::GetLauncherIDForAppID( 87 LauncherID TestLauncherDelegate::GetLauncherIDForAppID(
88 const std::string& app_id) { 88 const std::string& app_id) {
89 return 0; 89 return 0;
90 } 90 }
91 91
92 const std::string& TestLauncherDelegate::GetAppIDForLauncherID(LauncherID id) { 92 const std::string& TestLauncherDelegate::GetAppIDForLauncherID(LauncherID id) {
93 return EmptyString(); 93 return base::EmptyString();
94 } 94 }
95 95
96 void TestLauncherDelegate::PinAppWithID(const std::string& app_id) { 96 void TestLauncherDelegate::PinAppWithID(const std::string& app_id) {
97 } 97 }
98 98
99 bool TestLauncherDelegate::CanPin() const { 99 bool TestLauncherDelegate::CanPin() const {
100 return true; 100 return true;
101 } 101 }
102 102
103 bool TestLauncherDelegate::IsAppPinned(const std::string& app_id) { 103 bool TestLauncherDelegate::IsAppPinned(const std::string& app_id) {
104 return false; 104 return false;
105 } 105 }
106 106
107 void TestLauncherDelegate::UnpinAppWithID(const std::string& app_id) { 107 void TestLauncherDelegate::UnpinAppWithID(const std::string& app_id) {
108 } 108 }
109 109
110 } // namespace test 110 } // namespace test
111 } // namespace ash 111 } // namespace ash
OLDNEW
« no previous file with comments | « ash/shell/launcher_delegate_impl.cc ('k') | base/strings/string_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698