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

Side by Side Diff: chrome/browser/sync/glue/sync_backend_host.cc

Issue 2923006: Handle birthday errors by disabling sync and deleting sync data. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "base/file_util.h" 6 #include "base/file_util.h"
7 #include "base/file_version_info.h" 7 #include "base/file_version_info.h"
8 #include "base/task.h" 8 #include "base/task.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
10 #include "chrome/app/chrome_version_info.h" 10 #include "chrome/app/chrome_version_info.h"
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 FROM_HERE, 585 FROM_HERE,
586 NewRunnableMethod(this, &Core::NotifyPaused)); 586 NewRunnableMethod(this, &Core::NotifyPaused));
587 } 587 }
588 588
589 void SyncBackendHost::Core::OnResumed() { 589 void SyncBackendHost::Core::OnResumed() {
590 host_->frontend_loop_->PostTask( 590 host_->frontend_loop_->PostTask(
591 FROM_HERE, 591 FROM_HERE,
592 NewRunnableMethod(this, &Core::NotifyResumed)); 592 NewRunnableMethod(this, &Core::NotifyResumed));
593 } 593 }
594 594
595 void SyncBackendHost::Core::OnStopSyncingPermanently() {
596 host_->frontend_loop_->PostTask(FROM_HERE, NewRunnableMethod(this,
597 &Core::HandleStopSyncingPermanentlyOnFrontendLoop));
598 }
599
600 void SyncBackendHost::Core::HandleStopSyncingPermanentlyOnFrontendLoop() {
601 host_->frontend_->OnStopSyncingPermanently();
602 }
603
595 void SyncBackendHost::Core::HandleAuthErrorEventOnFrontendLoop( 604 void SyncBackendHost::Core::HandleAuthErrorEventOnFrontendLoop(
596 const GoogleServiceAuthError& new_auth_error) { 605 const GoogleServiceAuthError& new_auth_error) {
597 if (!host_ || !host_->frontend_) 606 if (!host_ || !host_->frontend_)
598 return; 607 return;
599 608
600 DCHECK_EQ(MessageLoop::current(), host_->frontend_loop_); 609 DCHECK_EQ(MessageLoop::current(), host_->frontend_loop_);
601 610
602 host_->last_auth_error_ = new_auth_error; 611 host_->last_auth_error_ = new_auth_error;
603 host_->frontend_->OnAuthError(); 612 host_->frontend_->OnAuthError();
604 } 613 }
(...skipping 21 matching lines...) Expand all
626 } 635 }
627 636
628 void SyncBackendHost::Core::DeleteSyncDataFolder() { 637 void SyncBackendHost::Core::DeleteSyncDataFolder() {
629 if (file_util::DirectoryExists(host_->sync_data_folder_path())) { 638 if (file_util::DirectoryExists(host_->sync_data_folder_path())) {
630 if (!file_util::Delete(host_->sync_data_folder_path(), true)) 639 if (!file_util::Delete(host_->sync_data_folder_path(), true))
631 LOG(DFATAL) << "Could not delete the Sync Data folder."; 640 LOG(DFATAL) << "Could not delete the Sync Data folder.";
632 } 641 }
633 } 642 }
634 643
635 } // namespace browser_sync 644 } // namespace browser_sync
OLDNEW
« no previous file with comments | « chrome/browser/sync/glue/sync_backend_host.h ('k') | chrome/browser/sync/profile_sync_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698