| 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 19 matching lines...) Expand all Loading... |
| 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 <application android:name="org.chromium.chrome.shell.ChromeShellApplication" | 35 <application android:name="org.chromium.chrome.shell.ChromeShellApplication" |
| 36 android:icon="@mipmap/app_icon" | 36 android:icon="@mipmap/app_icon" |
| 37 android:label="Chrome Shell"> | 37 android:label="Chrome Shell"> |
| 38 <activity android:name="org.chromium.chrome.shell.ChromeShellActivity" | 38 <activity android:name="org.chromium.chrome.shell.ChromeShellActivity" |
| 39 android:launchMode="singleTask" | 39 android:launchMode="singleTask" |
| 40 android:theme="@android:style/Theme.Holo.Light.NoActionBar" | 40 android:theme="@style/Theme.ChromeActionBar" |
| 41 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" | 41 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" |
| 42 android:hardwareAccelerated="true"> | 42 android:hardwareAccelerated="true"> |
| 43 <intent-filter> | 43 <intent-filter> |
| 44 <action android:name="android.intent.action.MAIN" /> | 44 <action android:name="android.intent.action.MAIN" /> |
| 45 <category android:name="android.intent.category.LAUNCHER" /> | 45 <category android:name="android.intent.category.LAUNCHER" /> |
| 46 </intent-filter> | 46 </intent-filter> |
| 47 </activity> | 47 </activity> |
| 48 <activity android:name="org.chromium.sync.test.util.MockGrantCredentials
PermissionActivity" | 48 <activity android:name="org.chromium.sync.test.util.MockGrantCredentials
PermissionActivity" |
| 49 android:exported="true"> | 49 android:exported="true"> |
| 50 <intent-filter> | 50 <intent-filter> |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged
Receiver"> | 231 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged
Receiver"> |
| 232 <intent-filter> | 232 <intent-filter> |
| 233 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> | 233 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> |
| 234 </intent-filter> | 234 </intent-filter> |
| 235 </receiver> | 235 </receiver> |
| 236 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" | 236 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" |
| 237 android:value="org.chromium.content.browser.SmartClipProvider
" /> | 237 android:value="org.chromium.content.browser.SmartClipProvider
" /> |
| 238 | 238 |
| 239 </application> | 239 </application> |
| 240 </manifest> | 240 </manifest> |
| OLD | NEW |