Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
|
Yusuke Sato
2016/06/20 17:50:20
one more nit:
Please also file a placeholder bug
| |
| 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 "components/arc/test/fake_app_instance.h" | 5 #include "components/arc/test/fake_app_instance.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 161 else | 161 else |
| 162 callback.Run(mojo::String(), mojo::String()); | 162 callback.Run(mojo::String(), mojo::String()); |
| 163 } | 163 } |
| 164 | 164 |
| 165 void FakeAppInstance::SetTaskActive(int32_t task_id) { | 165 void FakeAppInstance::SetTaskActive(int32_t task_id) { |
| 166 } | 166 } |
| 167 | 167 |
| 168 void FakeAppInstance::CloseTask(int32_t task_id) { | 168 void FakeAppInstance::CloseTask(int32_t task_id) { |
| 169 } | 169 } |
| 170 | 170 |
| 171 void FakeAppInstance::ShowPackageInfo(const mojo::String& package_name, | 171 void FakeAppInstance::ShowPackageInfoDeprecated( |
| 172 const gfx::Rect& dimension_on_screen) { | 172 const mojo::String& package_name, |
| 173 } | 173 const gfx::Rect& dimension_on_screen) {} |
| 174 | |
| 175 void FakeAppInstance::ShowPackageInfoOnPage( | |
| 176 const mojo::String& package_name, | |
| 177 mojom::ShowPackageInfoPage page, | |
| 178 const gfx::Rect& dimension_on_screen) {} | |
| 174 | 179 |
| 175 void FakeAppInstance::SetNotificationsEnabled(const mojo::String& package_name, | 180 void FakeAppInstance::SetNotificationsEnabled(const mojo::String& package_name, |
| 176 bool enabled) { | 181 bool enabled) { |
| 177 } | 182 } |
| 178 | 183 |
| 179 } // namespace arc | 184 } // namespace arc |
| OLD | NEW |