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

Side by Side Diff: chrome/android/java/res/xml/account_management_preferences.xml

Issue 1880203002: Add Google Activity Controls preference (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 <PreferenceScreen 6 <PreferenceScreen
7 xmlns:android="http://schemas.android.com/apk/res/android" 7 xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:app="http://schemas.android.com/apk/res-auto" 8 xmlns:app="http://schemas.android.com/apk/res-auto"
9 android:orderingFromXml="false"> 9 android:orderingFromXml="false">
10 10
(...skipping 23 matching lines...) Expand all
34 android:key="child_safe_sites" 34 android:key="child_safe_sites"
35 android:title="@string/account_management_child_safe_sites_title" 35 android:title="@string/account_management_child_safe_sites_title"
36 android:order="1004" /> 36 android:order="1004" />
37 37
38 <org.chromium.chrome.browser.preferences.SyncPreference 38 <org.chromium.chrome.browser.preferences.SyncPreference
39 android:key="sync_settings" 39 android:key="sync_settings"
40 android:title="@string/sign_in_sync" 40 android:title="@string/sign_in_sync"
41 android:order="1005"/> 41 android:order="1005"/>
42 42
43 <Preference 43 <Preference
44 android:key="google_activity_controls"
45 android:icon="@drawable/googleg"
46 android:title="@string/sign_in_google_activity_controls"
47 android:summary="@string/sign_in_google_activity_controls_message"
48 android:order="1006" />
49
50 <Preference
44 android:key="sign_out" 51 android:key="sign_out"
45 android:title="@string/account_management_sign_out" 52 android:title="@string/account_management_sign_out"
46 android:order="1006"/> 53 android:order="1007"/>
47 54
48 </PreferenceScreen> 55 </PreferenceScreen>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698