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

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

Issue 684453004: Make ChromeShell activity use AppCompat theme to match official Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « no previous file | chrome/android/shell/res/drawable/progress.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 25 matching lines...) Expand all
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
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>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/shell/res/drawable/progress.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698