| 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" |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 181 |
| 182 case chrome::NOTIFICATION_TAB_CONTENTS_APPLICATION_EXTENSION_CHANGED: { | 182 case chrome::NOTIFICATION_TAB_CONTENTS_APPLICATION_EXTENSION_CHANGED: { |
| 183 ExtensionTabHelper* extension_tab_helper = | 183 ExtensionTabHelper* extension_tab_helper = |
| 184 content::Source<ExtensionTabHelper>(source).ptr(); | 184 content::Source<ExtensionTabHelper>(source).ptr(); |
| 185 if (!extension_tab_helper || | 185 if (!extension_tab_helper || |
| 186 extension_tab_helper->web_contents()->GetBrowserContext() != | 186 extension_tab_helper->web_contents()->GetBrowserContext() != |
| 187 profile_) { | 187 profile_) { |
| 188 return; | 188 return; |
| 189 } | 189 } |
| 190 if (extension_tab_helper->extension_app()) { | 190 if (extension_tab_helper->extension_app()) { |
| 191 modified_tabs.push_back(extension_tab_helper->tab_contents_wrapper()-> | 191 modified_tabs.push_back(extension_tab_helper->tab_contents()-> |
| 192 synced_tab_delegate()); | 192 synced_tab_delegate()); |
| 193 } | 193 } |
| 194 DVLOG(1) << "Received TAB_CONTENTS_APPLICATION_EXTENSION_CHANGED " | 194 DVLOG(1) << "Received TAB_CONTENTS_APPLICATION_EXTENSION_CHANGED " |
| 195 << "for profile " << profile_; | 195 << "for profile " << profile_; |
| 196 break; | 196 break; |
| 197 } | 197 } |
| 198 | 198 |
| 199 default: | 199 default: |
| 200 LOG(ERROR) << "Received unexpected notification of type " | 200 LOG(ERROR) << "Received unexpected notification of type " |
| 201 << type; | 201 << type; |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 notification_registrar_.Add(this, chrome::NOTIFICATION_FAVICON_CHANGED, | 366 notification_registrar_.Add(this, chrome::NOTIFICATION_FAVICON_CHANGED, |
| 367 content::Source<Profile>(profile_)); | 367 content::Source<Profile>(profile_)); |
| 368 } | 368 } |
| 369 | 369 |
| 370 void SessionChangeProcessor::StopObserving() { | 370 void SessionChangeProcessor::StopObserving() { |
| 371 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 371 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 372 notification_registrar_.RemoveAll(); | 372 notification_registrar_.RemoveAll(); |
| 373 } | 373 } |
| 374 | 374 |
| 375 } // namespace browser_sync | 375 } // namespace browser_sync |
| OLD | NEW |