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

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

Issue 597063002: Revert of DevTools socket tunnel. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@glue
Patch Set: Created 6 years, 3 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
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2014 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.chrome.shell"> 10 package="org.chromium.chrome.shell">
(...skipping 14 matching lines...) Expand all
25 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS"/> 25 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS"/>
26 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" /> 26 <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
27 <uses-permission android:name="android.permission.USE_CREDENTIALS" /> 27 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
28 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 28 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
29 <!-- Only Chrome can receive the messages and registration result for GCM -- > 29 <!-- Only Chrome can receive the messages and registration result for GCM -- >
30 <permission android:name="org.chromium.chrome.shell.permission.C2D_MESSAGE" 30 <permission android:name="org.chromium.chrome.shell.permission.C2D_MESSAGE"
31 android:protectionLevel="signature" /> 31 android:protectionLevel="signature" />
32 <uses-permission android:name="org.chromium.chrome.shell.permission.C2D_MESS AGE" /> 32 <uses-permission android:name="org.chromium.chrome.shell.permission.C2D_MESS AGE" />
33 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" / > 33 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" / >
34 34
35 <permission android:name="org.chromium.chrome.shell.permission.DEBUG"
36 android:label="Debug web pages in Chrome Shell"
37 android:permissionGroup="android.permission-group.DEVELOPMENT_TO OLS"
38 android:protectionLevel="signature" />
39
40 <application android:name="org.chromium.chrome.shell.ChromeShellApplication" 35 <application android:name="org.chromium.chrome.shell.ChromeShellApplication"
41 android:icon="@mipmap/app_icon" 36 android:icon="@mipmap/app_icon"
42 android:label="Chrome Shell"> 37 android:label="Chrome Shell">
43 <activity android:name="org.chromium.chrome.shell.ChromeShellActivity" 38 <activity android:name="org.chromium.chrome.shell.ChromeShellActivity"
44 android:launchMode="singleTask" 39 android:launchMode="singleTask"
45 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 40 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
46 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" 41 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
47 android:hardwareAccelerated="true"> 42 android:hardwareAccelerated="true">
48 <intent-filter> 43 <intent-filter>
49 <action android:name="android.intent.action.MAIN" /> 44 <action android:name="android.intent.action.MAIN" />
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver"> 240 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver">
246 <intent-filter> 241 <intent-filter>
247 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / > 242 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / >
248 </intent-filter> 243 </intent-filter>
249 </receiver> 244 </receiver>
250 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 245 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
251 android:value="org.chromium.content.browser.SmartClipProvider " /> 246 android:value="org.chromium.content.browser.SmartClipProvider " />
252 247
253 </application> 248 </application>
254 </manifest> 249 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698