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

Side by Side Diff: content/shell/android/java/AndroidManifest.xml

Issue 10832104: Start upstreaming accessibility. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Dan's Nits Created 8 years, 4 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 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 <!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 4
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 8
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 9 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10 package="org.chromium.content_shell"> 10 package="org.chromium.content_shell">
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 android:exported="false" /> 49 android:exported="false" />
50 <service android:name="org.chromium.content.app.SandboxedProcessService4 " 50 <service android:name="org.chromium.content.app.SandboxedProcessService4 "
51 android:process=":sandboxed_process4" 51 android:process=":sandboxed_process4"
52 android:permission="org.chromium.content_shell.permission.SANDB OX" 52 android:permission="org.chromium.content_shell.permission.SANDB OX"
53 android:exported="false" /> 53 android:exported="false" />
54 </application> 54 </application>
55 55
56 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" /> 56 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="14" />
57 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 57 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
58 <uses-permission android:name="android.permission.INTERNET"/> 58 <uses-permission android:name="android.permission.INTERNET"/>
59 <uses-permission android:name="android.permission.VIBRATE"/>
59 <uses-permission android:name="android.permission.WAKE_LOCK"/> 60 <uses-permission android:name="android.permission.WAKE_LOCK"/>
60 </manifest> 61 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698