| 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 25 matching lines...) Expand all Loading... |
| 36 <permission android:name="org.chromium.chrome.shell.permission.DEBUG" | 36 <permission android:name="org.chromium.chrome.shell.permission.DEBUG" |
| 37 android:label="Debug web pages in Chrome Shell" | 37 android:label="Debug web pages in Chrome Shell" |
| 38 android:permissionGroup="android.permission-group.DEVELOPMENT_TO
OLS" | 38 android:permissionGroup="android.permission-group.DEVELOPMENT_TO
OLS" |
| 39 android:protectionLevel="signature" /> | 39 android:protectionLevel="signature" /> |
| 40 | 40 |
| 41 <application android:name="org.chromium.chrome.shell.ChromeShellApplication" | 41 <application android:name="org.chromium.chrome.shell.ChromeShellApplication" |
| 42 android:icon="@mipmap/app_icon" | 42 android:icon="@mipmap/app_icon" |
| 43 android:label="Chrome Shell"> | 43 android:label="Chrome Shell"> |
| 44 <activity android:name="org.chromium.chrome.shell.ChromeShellActivity" | 44 <activity android:name="org.chromium.chrome.shell.ChromeShellActivity" |
| 45 android:launchMode="singleTask" | 45 android:launchMode="singleTask" |
| 46 android:theme="@android:style/Theme.Holo.Light.NoActionBar" | 46 android:theme="@style/MainTheme" |
| 47 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" | 47 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" |
| 48 android:hardwareAccelerated="true"> | 48 android:hardwareAccelerated="true"> |
| 49 <intent-filter> | 49 <intent-filter> |
| 50 <action android:name="android.intent.action.MAIN" /> | 50 <action android:name="android.intent.action.MAIN" /> |
| 51 <category android:name="android.intent.category.LAUNCHER" /> | 51 <category android:name="android.intent.category.LAUNCHER" /> |
| 52 </intent-filter> | 52 </intent-filter> |
| 53 </activity> | 53 </activity> |
| 54 <activity android:name="org.chromium.sync.test.util.MockGrantCredentials
PermissionActivity" | 54 <activity android:name="org.chromium.sync.test.util.MockGrantCredentials
PermissionActivity" |
| 55 android:exported="true"> | 55 android:exported="true"> |
| 56 <intent-filter> | 56 <intent-filter> |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged
Receiver"> | 153 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged
Receiver"> |
| 154 <intent-filter> | 154 <intent-filter> |
| 155 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> | 155 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> |
| 156 </intent-filter> | 156 </intent-filter> |
| 157 </receiver> | 157 </receiver> |
| 158 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" | 158 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" |
| 159 android:value="org.chromium.content.browser.SmartClipProvider
" /> | 159 android:value="org.chromium.content.browser.SmartClipProvider
" /> |
| 160 | 160 |
| 161 </application> | 161 </application> |
| 162 </manifest> | 162 </manifest> |
| OLD | NEW |