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

Side by Side Diff: chrome/android/java_staging/AndroidManifest.xml

Issue 1143313006: Add an activity that allows whitelisted applications to clear all data in Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review Created 5 years, 6 months 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
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <!-- 6 <!--
7 Note: This is a jinja2 template, processed at build time into the final manifest . 7 Note: This is a jinja2 template, processed at build time into the final manifest .
8 8
9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden 9 Blocks denoted with { % block some_name % }foo{ % endblock % } can be overridden
10 by a child template that "extends" this file. 10 by a child template that "extends" this file.
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 <activity android:name="org.chromium.chrome.browser.media.remote.Expande dControllerActivity" 343 <activity android:name="org.chromium.chrome.browser.media.remote.Expande dControllerActivity"
344 android:theme="@style/MainTheme" 344 android:theme="@style/MainTheme"
345 android:label="Chrome.ExpandedControllerActivity" 345 android:label="Chrome.ExpandedControllerActivity"
346 android:hardwareAccelerated="true" 346 android:hardwareAccelerated="true"
347 android:launchMode="singleTask" 347 android:launchMode="singleTask"
348 android:noHistory="true" 348 android:noHistory="true"
349 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" 349 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc"
350 android:excludeFromRecents="true"> 350 android:excludeFromRecents="true">
351 </activity> 351 </activity>
352 352
353 <activity android:name="org.chromium.chrome.browser.childaccounts.ResetD ataActivity"
354 android:theme="@android:style/Theme.Translucent.NoTitleBar"
palmer 2015/06/17 21:55:17 As declared, any other package on the device could
Bernhard Bauer 2015/06/18 09:08:53 The problem with declaring a permission is that th
355 android:exported="true"
356 android:excludeFromRecents="true">
357 </activity>
358
353 <activity android:name="org.chromium.chrome.browser.document.CipherKeyAc tivity" 359 <activity android:name="org.chromium.chrome.browser.document.CipherKeyAc tivity"
354 android:launchMode="singleInstance" 360 android:launchMode="singleInstance"
355 android:theme="@android:style/Theme.Translucent.NoTitleBar" 361 android:theme="@android:style/Theme.Translucent.NoTitleBar"
356 android:excludeFromRecents="true"> 362 android:excludeFromRecents="true">
357 </activity> 363 </activity>
358 364
359 <!-- Providers for chrome data. --> 365 <!-- Providers for chrome data. -->
360 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide rStaging" 366 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide rStaging"
361 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}" 367 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}"
362 android:exported="true"> 368 android:exported="true">
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 589
584 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 590 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
585 android:value="org.chromium.content.browser.SmartClipProvider"/> 591 android:value="org.chromium.content.browser.SmartClipProvider"/>
586 <meta-data android:name="org.chromium.components.service_tab_launcher.SE RVICE_TAB_LAUNCHER" 592 <meta-data android:name="org.chromium.components.service_tab_launcher.SE RVICE_TAB_LAUNCHER"
587 android:value="org.chromium.chrome.browser.ChromeServiceTabLa uncher" /> 593 android:value="org.chromium.chrome.browser.ChromeServiceTabLa uncher" />
588 594
589 {% block extra_application_definitions %} 595 {% block extra_application_definitions %}
590 {% endblock %} 596 {% endblock %}
591 </application> 597 </application>
592 </manifest> 598 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698