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 20 matching lines...) Expand all Loading... |
31 <uses-permission android:name="org.chromium.chrome.shell.permission.C2D_MESS
AGE" /> | 31 <uses-permission android:name="org.chromium.chrome.shell.permission.C2D_MESS
AGE" /> |
32 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /
> | 32 <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /
> |
33 | 33 |
34 <permission android:name="org.chromium.chrome.shell.permission.DEBUG" | 34 <permission android:name="org.chromium.chrome.shell.permission.DEBUG" |
35 android:label="Debug web pages in Chrome Shell" | 35 android:label="Debug web pages in Chrome Shell" |
36 android:permissionGroup="android.permission-group.DEVELOPMENT_TO
OLS" | 36 android:permissionGroup="android.permission-group.DEVELOPMENT_TO
OLS" |
37 android:protectionLevel="signature" /> | 37 android:protectionLevel="signature" /> |
38 | 38 |
39 <application android:name="org.chromium.chrome.shell.ChromeShellApplication" | 39 <application android:name="org.chromium.chrome.shell.ChromeShellApplication" |
40 android:icon="@mipmap/app_icon" | 40 android:icon="@mipmap/app_icon" |
41 android:label="Chrome Shell"> | 41 android:label="@string/app_name"> |
42 <activity android:name="org.chromium.chrome.shell.ChromeShellActivity" | 42 <activity android:name="org.chromium.chrome.shell.ChromeShellActivity" |
43 android:launchMode="singleTask" | 43 android:launchMode="singleTask" |
44 android:theme="@style/MainTheme" | 44 android:theme="@style/MainTheme" |
45 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" | 45 android:configChanges="orientation|keyboardHidden|keyboard|scr
eenSize" |
46 android:hardwareAccelerated="true"> | 46 android:hardwareAccelerated="true"> |
47 <intent-filter> | 47 <intent-filter> |
48 <action android:name="android.intent.action.MAIN" /> | 48 <action android:name="android.intent.action.MAIN" /> |
49 <category android:name="android.intent.category.LAUNCHER" /> | 49 <category android:name="android.intent.category.LAUNCHER" /> |
50 </intent-filter> | 50 </intent-filter> |
51 </activity> | 51 </activity> |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged
Receiver"> | 181 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged
Receiver"> |
182 <intent-filter> | 182 <intent-filter> |
183 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> | 183 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" /
> |
184 </intent-filter> | 184 </intent-filter> |
185 </receiver> | 185 </receiver> |
186 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" | 186 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE
R" |
187 android:value="org.chromium.content.browser.SmartClipProvider
" /> | 187 android:value="org.chromium.content.browser.SmartClipProvider
" /> |
188 | 188 |
189 </application> | 189 </application> |
190 </manifest> | 190 </manifest> |
OLD | NEW |