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

Side by Side Diff: base/test/test_stub_android.cc

Issue 9443018: Upstream Android's PathUtils implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased patch Created 8 years, 9 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 <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
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
OLDNEW
« base/base.gyp ('K') | « base/base.gypi ('k') | build/android/envsetup.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698