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

Unified Diff: base/android/important_file_writer_android.cc

Issue 1647803004: Move base to DEPS (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: base/android/important_file_writer_android.cc
diff --git a/base/android/important_file_writer_android.cc b/base/android/important_file_writer_android.cc
deleted file mode 100644
index bcbd785da0449e8e7cf57c919d80cbc4355dcb34..0000000000000000000000000000000000000000
--- a/base/android/important_file_writer_android.cc
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "base/android/important_file_writer_android.h"
-
-#include <string>
-
-#include "base/android/jni_string.h"
-#include "base/files/important_file_writer.h"
-#include "base/threading/thread_restrictions.h"
-#include "jni/ImportantFileWriterAndroid_jni.h"
-
-namespace base {
-namespace android {
-
-static jboolean WriteFileAtomically(JNIEnv* env,
- jclass /* clazz */,
- jstring file_name,
- jbyteArray data) {
- // This is called on the UI thread during shutdown to save tab data, so
- // needs to enable IO.
- base::ThreadRestrictions::ScopedAllowIO allow_io;
- std::string native_file_name;
- base::android::ConvertJavaStringToUTF8(env, file_name, &native_file_name);
- base::FilePath path(native_file_name);
- int data_length = env->GetArrayLength(data);
- jbyte* native_data = env->GetByteArrayElements(data, NULL);
- std::string native_data_string(reinterpret_cast<char *>(native_data),
- data_length);
- bool result = base::ImportantFileWriter::WriteFileAtomically(
- path, native_data_string);
- env->ReleaseByteArrayElements(data, native_data, JNI_ABORT);
- return result;
-}
-
-bool RegisterImportantFileWriterAndroid(JNIEnv* env) {
- return RegisterNativesImpl(env);
-}
-
-} // namespace android
-} // namespace base
« no previous file with comments | « base/android/important_file_writer_android.h ('k') | base/android/java/src/org/chromium/base/ActivityState.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698