Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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" | |
|
mnaganov (inactive)
2014/09/12 13:37:29
Does this need a clarification, like "from externa
SeRya
2014/09/15 15:20:00
Theoretically this label may be shown when user in
| |
| 37 android:permissionGroup="android.permission-group.DEVELOPMENT_TO OLS" | |
| 38 android:protectionLevel="signature" /> | |
| 39 | |
| 35 <application android:name="org.chromium.chrome.shell.ChromeShellApplication" | 40 <application android:name="org.chromium.chrome.shell.ChromeShellApplication" |
| 36 android:icon="@mipmap/app_icon" | 41 android:icon="@mipmap/app_icon" |
| 37 android:label="Chrome Shell"> | 42 android:label="Chrome Shell"> |
| 38 <activity android:name="org.chromium.chrome.shell.ChromeShellActivity" | 43 <activity android:name="org.chromium.chrome.shell.ChromeShellActivity" |
| 39 android:launchMode="singleTask" | 44 android:launchMode="singleTask" |
| 40 android:theme="@android:style/Theme.Holo.Light.NoActionBar" | 45 android:theme="@android:style/Theme.Holo.Light.NoActionBar" |
| 41 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" | 46 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" |
| 42 android:hardwareAccelerated="true"> | 47 android:hardwareAccelerated="true"> |
| 43 <intent-filter> | 48 <intent-filter> |
| 44 <action android:name="android.intent.action.MAIN" /> | 49 <action android:name="android.intent.action.MAIN" /> |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 240 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver"> | 245 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver"> |
| 241 <intent-filter> | 246 <intent-filter> |
| 242 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / > | 247 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / > |
| 243 </intent-filter> | 248 </intent-filter> |
| 244 </receiver> | 249 </receiver> |
| 245 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" | 250 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" |
| 246 android:value="org.chromium.content.browser.SmartClipProvider " /> | 251 android:value="org.chromium.content.browser.SmartClipProvider " /> |
| 247 | 252 |
| 248 </application> | 253 </application> |
| 249 </manifest> | 254 </manifest> |
| OLD | NEW |