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

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: 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 <activity android:name="org.chromium.chrome.browser.media.remote.Expande dControllerActivity" 342 <activity android:name="org.chromium.chrome.browser.media.remote.Expande dControllerActivity"
343 android:theme="@style/MainTheme" 343 android:theme="@style/MainTheme"
344 android:label="Chrome.ExpandedControllerActivity" 344 android:label="Chrome.ExpandedControllerActivity"
345 android:hardwareAccelerated="true" 345 android:hardwareAccelerated="true"
346 android:launchMode="singleTask" 346 android:launchMode="singleTask"
347 android:noHistory="true" 347 android:noHistory="true"
348 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc" 348 android:configChanges="orientation|keyboardHidden|keyboard|screenSiz e|mcc|mnc"
349 android:excludeFromRecents="true"> 349 android:excludeFromRecents="true">
350 </activity> 350 </activity>
351 351
352 <activity android:name="org.chromium.chrome.browser.child_accounts.Reset DataActivity"
aurimas (slooooooooow) 2015/06/09 17:45:03 We are exporting this and we will always have to s
353 android:theme="@style/Transparent"
354 android:exported="true"
355 android:excludeFromRecents="true">
356 </activity>
357
352 <activity android:name="org.chromium.chrome.browser.document.CipherKeyAc tivity" 358 <activity android:name="org.chromium.chrome.browser.document.CipherKeyAc tivity"
353 android:launchMode="singleInstance" 359 android:launchMode="singleInstance"
354 android:theme="@android:style/Theme.Translucent.NoTitleBar" 360 android:theme="@android:style/Theme.Translucent.NoTitleBar"
355 android:excludeFromRecents="true"> 361 android:excludeFromRecents="true">
356 </activity> 362 </activity>
357 363
358 <!-- Providers for chrome data. --> 364 <!-- Providers for chrome data. -->
359 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide rStaging" 365 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide rStaging"
360 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}" 366 android:authorities="{{ manifest_package }}.ChromeBrowserProvider;{{ manifest_package }}.browser;{{ manifest_package }}"
361 android:exported="true"> 367 android:exported="true">
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 589 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
584 android:value="org.chromium.content.browser.SmartClipProvider"/> 590 android:value="org.chromium.content.browser.SmartClipProvider"/>
585 <meta-data android:name="org.chromium.components.service_tab_launcher.SE RVICE_TAB_LAUNCHER" 591 <meta-data android:name="org.chromium.components.service_tab_launcher.SE RVICE_TAB_LAUNCHER"
586 android:value="org.chromium.chrome.browser.ChromeServiceTabLa uncher" /> 592 android:value="org.chromium.chrome.browser.ChromeServiceTabLa uncher" />
587 593
588 {% block extra_application_definitions %} 594 {% block extra_application_definitions %}
589 {% endblock %} 595 {% endblock %}
590 </application> 596 </application>
591 </manifest> 597 </manifest>
592 598
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698