OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/sync/glue/session_change_processor.h" | 5 #include "chrome/browser/sync/glue/session_change_processor.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "chrome/browser/extensions/tab_helper.h" | 11 #include "chrome/browser/extensions/tab_helper.h" |
12 #include "chrome/browser/history/history_notifications.h" | 12 #include "chrome/browser/history/history_notifications.h" |
13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
14 #include "chrome/browser/sync/glue/session_model_associator.h" | 14 #include "chrome/browser/sync/glue/session_model_associator.h" |
15 #include "chrome/browser/sync/profile_sync_service.h" | 15 #include "chrome/browser/sync/profile_sync_service.h" |
16 #include "chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h" | 16 #include "chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h" |
17 #include "chrome/browser/ui/tab_contents/tab_contents.h" | 17 #include "chrome/browser/ui/tab_contents/tab_contents.h" |
18 #include "chrome/common/chrome_notification_types.h" | 18 #include "chrome/common/chrome_notification_types.h" |
19 #include "content/public/browser/navigation_controller.h" | 19 #include "content/public/browser/navigation_controller.h" |
20 #include "content/public/browser/navigation_entry.h" | 20 #include "content/public/browser/navigation_entry.h" |
21 #include "content/public/browser/notification_details.h" | 21 #include "content/public/browser/notification_details.h" |
22 #include "content/public/browser/notification_service.h" | 22 #include "content/public/browser/notification_service.h" |
23 #include "content/public/browser/notification_source.h" | 23 #include "content/public/browser/notification_source.h" |
24 #include "content/public/browser/web_contents.h" | 24 #include "content/public/browser/web_contents.h" |
25 #include "sync/api/sync_error.h" | 25 #include "sync/api/sync_error.h" |
26 #include "sync/internal_api/public/base/model_type.h" | 26 #include "sync/internal_api/public/base/model_type.h" |
27 #include "sync/internal_api/public/base/model_type_state_map.h" | 27 #include "sync/internal_api/public/base/model_type_invalidation_map.h" |
28 #include "sync/internal_api/public/change_record.h" | 28 #include "sync/internal_api/public/change_record.h" |
29 #include "sync/internal_api/public/read_node.h" | 29 #include "sync/internal_api/public/read_node.h" |
30 #include "sync/protocol/session_specifics.pb.h" | 30 #include "sync/protocol/session_specifics.pb.h" |
31 | 31 |
32 using content::BrowserThread; | 32 using content::BrowserThread; |
33 using content::NavigationController; | 33 using content::NavigationController; |
34 using content::WebContents; | 34 using content::WebContents; |
35 | 35 |
36 namespace browser_sync { | 36 namespace browser_sync { |
37 | 37 |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 // it being a modified tab, we know the tab is active (so we won't do | 205 // it being a modified tab, we know the tab is active (so we won't do |
206 // refreshes just because the refresh page is open in a background tab). | 206 // refreshes just because the refresh page is open in a background tab). |
207 if (!modified_tabs.empty()) { | 207 if (!modified_tabs.empty()) { |
208 SyncedTabDelegate* tab = modified_tabs.front(); | 208 SyncedTabDelegate* tab = modified_tabs.front(); |
209 const content::NavigationEntry* entry = tab->GetActiveEntry(); | 209 const content::NavigationEntry* entry = tab->GetActiveEntry(); |
210 if (!tab->IsBeingDestroyed() && | 210 if (!tab->IsBeingDestroyed() && |
211 entry && | 211 entry && |
212 entry->GetVirtualURL().is_valid() && | 212 entry->GetVirtualURL().is_valid() && |
213 entry->GetVirtualURL().spec() == kNTPOpenTabSyncURL) { | 213 entry->GetVirtualURL().spec() == kNTPOpenTabSyncURL) { |
214 DVLOG(1) << "Triggering sync refresh for sessions datatype."; | 214 DVLOG(1) << "Triggering sync refresh for sessions datatype."; |
215 const syncer::ModelType type = syncer::SESSIONS; | 215 const syncer::ModelTypeSet types(syncer::SESSIONS); |
216 syncer::ModelTypeStateMap state_map; | 216 const syncer::ModelTypeInvalidationMap& invalidation_map = |
217 state_map.insert(std::make_pair(type, syncer::InvalidationState())); | 217 ModelTypeSetToInvalidationMap(types, std::string()); |
218 content::NotificationService::current()->Notify( | 218 content::NotificationService::current()->Notify( |
219 chrome::NOTIFICATION_SYNC_REFRESH_LOCAL, | 219 chrome::NOTIFICATION_SYNC_REFRESH_LOCAL, |
220 content::Source<Profile>(profile_), | 220 content::Source<Profile>(profile_), |
221 content::Details<const syncer::ModelTypeStateMap>(&state_map)); | 221 content::Details<const syncer::ModelTypeInvalidationMap>( |
| 222 &invalidation_map)); |
222 } | 223 } |
223 } | 224 } |
224 | 225 |
225 // Associate tabs first so the synced session tracker is aware of them. | 226 // Associate tabs first so the synced session tracker is aware of them. |
226 // Note that if we fail to associate, it means something has gone wrong, | 227 // Note that if we fail to associate, it means something has gone wrong, |
227 // such as our local session being deleted, so we disassociate and associate | 228 // such as our local session being deleted, so we disassociate and associate |
228 // again. | 229 // again. |
229 bool reassociation_needed = !modified_tabs.empty() && | 230 bool reassociation_needed = !modified_tabs.empty() && |
230 !session_model_associator_->AssociateTabs(modified_tabs, NULL); | 231 !session_model_associator_->AssociateTabs(modified_tabs, NULL); |
231 | 232 |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 notification_registrar_.Add(this, chrome::NOTIFICATION_FAVICON_CHANGED, | 357 notification_registrar_.Add(this, chrome::NOTIFICATION_FAVICON_CHANGED, |
357 content::Source<Profile>(profile_)); | 358 content::Source<Profile>(profile_)); |
358 } | 359 } |
359 | 360 |
360 void SessionChangeProcessor::StopObserving() { | 361 void SessionChangeProcessor::StopObserving() { |
361 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 362 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
362 notification_registrar_.RemoveAll(); | 363 notification_registrar_.RemoveAll(); |
363 } | 364 } |
364 | 365 |
365 } // namespace browser_sync | 366 } // namespace browser_sync |
OLD | NEW |