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

Side by Side Diff: chrome/android/sync_shell/java/AndroidManifest.xml.jinja2

Issue 1144543009: [Android] Only invalidate objects that were received from Tango on resume. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: +toString 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 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.sync_shell"> 10 package="org.chromium.chrome.sync_shell">
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 android:name="org.chromium.chrome.browser.services.gcm.GCMList ener$Receiver"> 129 android:name="org.chromium.chrome.browser.services.gcm.GCMList ener$Receiver">
130 <intent-filter> 130 <intent-filter>
131 <action android:name="com.google.ipc.invalidation.gcmmplex.EVENT " /> 131 <action android:name="com.google.ipc.invalidation.gcmmplex.EVENT " />
132 </intent-filter> 132 </intent-filter>
133 </receiver> 133 </receiver>
134 134
135 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide r" 135 <provider android:name="org.chromium.chrome.browser.ChromeBrowserProvide r"
136 android:authorities="org.chromium.chrome.sync_shell" 136 android:authorities="org.chromium.chrome.sync_shell"
137 android:exported="true" /> 137 android:exported="true" />
138 138
139 <!-- Sync adapter for browser sync. --> 139 <!-- Sync adapter for browser invalidation. -->
140 <service android:exported="false" 140 <service android:exported="false"
141 android:name="org.chromium.chrome.shell.sync.ChromeShellSyncAda pterService"> 141 android:name="org.chromium.chrome.shell.invalidation.ChromeShel lSyncAdapterService">
142 <intent-filter> 142 <intent-filter>
143 <action android:name="android.content.SyncAdapter" /> 143 <action android:name="android.content.SyncAdapter" />
144 </intent-filter> 144 </intent-filter>
145 <meta-data android:name="android.content.SyncAdapter" 145 <meta-data android:name="android.content.SyncAdapter"
146 android:resource="@xml/syncadapter" /> 146 android:resource="@xml/syncadapter" />
147 </service> 147 </service>
148 148
149 <!-- Broadcast receiver that will be notified of account changes. --> 149 <!-- Broadcast receiver that will be notified of account changes. -->
150 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver"> 150 <receiver android:name="org.chromium.chrome.shell.signin.AccountsChanged Receiver">
151 <intent-filter> 151 <intent-filter>
152 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / > 152 <action android:name="android.accounts.LOGIN_ACCOUNTS_CHANGED" / >
153 </intent-filter> 153 </intent-filter>
154 </receiver> 154 </receiver>
155 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R" 155 <meta-data android:name="org.chromium.content.browser.SMART_CLIP_PROVIDE R"
156 android:value="org.chromium.content.browser.SmartClipProvider " /> 156 android:value="org.chromium.content.browser.SmartClipProvider " />
157 157
158 </application> 158 </application>
159 </manifest> 159 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698