| OLD | NEW |
| 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 <stdarg.h> | 5 #include <stdarg.h> |
| 6 #include <string.h> | 6 #include <string.h> |
| 7 | 7 |
| 8 #include "base/file_path.h" | 8 #include "base/file_path.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 | 194 |
| 195 void MessagePumpForUI::Start(Delegate* delegate) {} | 195 void MessagePumpForUI::Start(Delegate* delegate) {} |
| 196 | 196 |
| 197 void MessagePumpForUI::Quit() {} | 197 void MessagePumpForUI::Quit() {} |
| 198 | 198 |
| 199 void MessagePumpForUI::ScheduleWork() {} | 199 void MessagePumpForUI::ScheduleWork() {} |
| 200 | 200 |
| 201 void MessagePumpForUI::ScheduleDelayedWork(const TimeTicks& delayed_work_time) { | 201 void MessagePumpForUI::ScheduleDelayedWork(const TimeTicks& delayed_work_time) { |
| 202 } | 202 } |
| 203 | 203 |
| 204 // TODO(michaelbai): The below PathProviderAndroid was added because we | |
| 205 // excluded base_paths_android.cc which requires JNI to compile. Remove them | |
| 206 // when this file added. | |
| 207 bool PathProviderAndroid(int key, FilePath* result) { | |
| 208 return false; | |
| 209 } | |
| 210 | |
| 211 } // namespace base | 204 } // namespace base |
| OLD | NEW |