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

Side by Side Diff: chrome/browser/sync/profile_sync_service.h

Issue 5159001: Rest of the autofill work. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Diff against the first part of the review. Created 10 years, 1 month 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 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 // other threads. 397 // other threads.
398 scoped_ptr<browser_sync::SyncBackendHost> backend_; 398 scoped_ptr<browser_sync::SyncBackendHost> backend_;
399 399
400 // Cache of the last name the client attempted to authenticate. 400 // Cache of the last name the client attempted to authenticate.
401 std::string last_attempted_user_email_; 401 std::string last_attempted_user_email_;
402 402
403 // Whether we have seen a SYNC_PASSPHRASE_REQUIRED since initializing the 403 // Whether we have seen a SYNC_PASSPHRASE_REQUIRED since initializing the
404 // backend, telling us that it is safe to send a passphrase down ASAP. 404 // backend, telling us that it is safe to send a passphrase down ASAP.
405 bool observed_passphrase_required_; 405 bool observed_passphrase_required_;
406 406
407 // Gets all the syncable types for the current client state. Called when
408 // Keep everything synced is checked. Currently only discriminates on
409 // autofill profile based on whether the legacy datatype has been migrated
410 // or not.
411 void ProfileSyncService::GetAllSyncableTypesForCurrentClientState(
412 syncable::ModelTypeSet* preferred_types) const;
413
407 private: 414 private:
408 friend class ProfileSyncServiceTest; 415 friend class ProfileSyncServiceTest;
409 friend class ProfileSyncServicePasswordTest; 416 friend class ProfileSyncServicePasswordTest;
410 friend class ProfileSyncServicePreferenceTest; 417 friend class ProfileSyncServicePreferenceTest;
411 friend class ProfileSyncServiceSessionTest; 418 friend class ProfileSyncServiceSessionTest;
412 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceTest, InitialState); 419 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceTest, InitialState);
413 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceTest, 420 FRIEND_TEST_ALL_PREFIXES(ProfileSyncServiceTest,
414 UnrecoverableErrorSuspendsService); 421 UnrecoverableErrorSuspendsService);
415 422
416 // If |delete_sync_data_folder| is true, then this method will delete all 423 // If |delete_sync_data_folder| is true, then this method will delete all
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 // and is necessary because the nudge sync framework can drop nudges for 533 // and is necessary because the nudge sync framework can drop nudges for
527 // a wide variety of sync-related conditions (throttling, connections issues, 534 // a wide variety of sync-related conditions (throttling, connections issues,
528 // syncer paused, etc.). It can only be removed correctly when the framework 535 // syncer paused, etc.). It can only be removed correctly when the framework
529 // is reworked to allow one-shot commands like clearing server data. 536 // is reworked to allow one-shot commands like clearing server data.
530 base::OneShotTimer<ProfileSyncService> clear_server_data_timer_; 537 base::OneShotTimer<ProfileSyncService> clear_server_data_timer_;
531 538
532 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); 539 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService);
533 }; 540 };
534 541
535 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ 542 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698