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

Side by Side Diff: content/app/android/library_loader_hooks.cc

Issue 14606009: Cleanup: Remove unneeded base/file_util.h includes in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 7 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
« no previous file with comments | « no previous file | content/browser/android/tracing_intent_handler.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 "content/public/app/android_library_loader_hooks.h" 5 #include "content/public/app/android_library_loader_hooks.h"
6 6
7 #include "base/android/base_jni_registrar.h" 7 #include "base/android/base_jni_registrar.h"
8 #include "base/android/jni_android.h" 8 #include "base/android/jni_android.h"
9 #include "base/android/jni_registrar.h" 9 #include "base/android/jni_registrar.h"
10 #include "base/android/jni_string.h" 10 #include "base/android/jni_string.h"
11 #include "base/at_exit.h" 11 #include "base/at_exit.h"
12 #include "base/base_switches.h" 12 #include "base/base_switches.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/debug/trace_event.h" 14 #include "base/debug/trace_event.h"
15 #include "base/file_util.h"
16 #include "base/files/file_path.h" 15 #include "base/files/file_path.h"
17 #include "base/logging.h" 16 #include "base/logging.h"
18 #include "base/string_util.h" 17 #include "base/string_util.h"
19 #include "base/tracked_objects.h" 18 #include "base/tracked_objects.h"
20 #include "content/app/android/app_jni_registrar.h" 19 #include "content/app/android/app_jni_registrar.h"
21 #include "content/browser/android/browser_jni_registrar.h" 20 #include "content/browser/android/browser_jni_registrar.h"
22 #include "content/common/android/command_line.h" 21 #include "content/common/android/command_line.h"
23 #include "content/common/android/common_jni_registrar.h" 22 #include "content/common/android/common_jni_registrar.h"
24 #include "content/public/common/content_switches.h" 23 #include "content/public/common/content_switches.h"
25 #include "content/public/common/result_codes.h" 24 #include "content/public/common/result_codes.h"
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 } 109 }
111 110
112 bool RegisterLibraryLoaderEntryHook(JNIEnv* env) { 111 bool RegisterLibraryLoaderEntryHook(JNIEnv* env) {
113 // We need the AtExitManager to be created at the very beginning. 112 // We need the AtExitManager to be created at the very beginning.
114 g_at_exit_manager = new base::AtExitManager(); 113 g_at_exit_manager = new base::AtExitManager();
115 114
116 return RegisterNativesImpl(env); 115 return RegisterNativesImpl(env);
117 } 116 }
118 117
119 } // namespace content 118 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/browser/android/tracing_intent_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698