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

Unified Diff: chrome/test/live_sync/autofill_helper.h

Issue 7828055: Move sync test code out of chrome/test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/live_sync/apps_helper.cc ('k') | chrome/test/live_sync/autofill_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/live_sync/autofill_helper.h
===================================================================
--- chrome/test/live_sync/autofill_helper.h (revision 99413)
+++ chrome/test/live_sync/autofill_helper.h (working copy)
@@ -1,97 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_TEST_LIVE_SYNC_AUTOFILL_HELPER_H_
-#define CHROME_TEST_LIVE_SYNC_AUTOFILL_HELPER_H_
-#pragma once
-
-#include <set>
-#include <string>
-#include <vector>
-
-#include "base/compiler_specific.h"
-#include "base/string16.h"
-#include "chrome/test/live_sync/sync_datatype_helper.h"
-
-class AutofillEntry;
-class AutofillKey;
-class AutofillProfile;
-class AutofillType;
-class PersonalDataManager;
-class WebDataService;
-
-namespace autofill_helper {
-
-enum ProfileType {
- PROFILE_MARION,
- PROFILE_HOMER,
- PROFILE_FRASIER,
- PROFILE_NULL
-};
-
-// Used to access the web data service within a particular sync profile.
-WebDataService* GetWebDataService(int index) WARN_UNUSED_RESULT;
-
-// Used to access the personal data manager within a particular sync profile.
-PersonalDataManager* GetPersonalDataManager(int index) WARN_UNUSED_RESULT;
-
-// Adds the form fields in |keys| to the WebDataService of sync profile
-// |profile|.
-void AddKeys(int profile, const std::set<AutofillKey>& keys);
-
-// Removes the form field in |key| from the WebDataService of sync profile
-// |profile|.
-void RemoveKey(int profile, const AutofillKey& key);
-
-// Gets all the form fields in the WebDataService of sync profile |profile|.
-std::set<AutofillEntry> GetAllKeys(int profile) WARN_UNUSED_RESULT;
-
-// Compares the form fields in the WebDataServices of sync profiles
-// |profile_a| and |profile_b|. Returns true if they match.
-bool KeysMatch(int profile_a, int profile_b) WARN_UNUSED_RESULT;
-
-// Replaces the Autofill profiles in sync profile |profile| with
-// |autofill_profiles|.
-void SetProfiles(int profile, std::vector<AutofillProfile>* autofill_profiles);
-
-// Adds the autofill profile |autofill_profile| to sync profile |profile|.
-void AddProfile(int profile, const AutofillProfile& autofill_profile);
-
-// Removes the autofill profile with guid |guid| from sync profile
-// |profile|.
-void RemoveProfile(int profile, const std::string& guid);
-
-// Updates the autofill profile with guid |guid| in sync profile |profile|
-// to |type| and |value|.
-void UpdateProfile(int profile,
- const std::string& guid,
- const AutofillType& type,
- const string16& value);
-
-// Gets all the Autofill profiles in the PersonalDataManager of sync profile
-// |profile|.
-const std::vector<AutofillProfile*>& GetAllProfiles(
- int profile) WARN_UNUSED_RESULT;
-
-// Returns the number of autofill profiles contained by sync profile
-// |profile|.
-int GetProfileCount(int profile);
-
-// Returns the number of autofill keys contained by sync profile |profile|.
-int GetKeyCount(int profile);
-
-// Compares the Autofill profiles in the PersonalDataManagers of sync profiles
-// |profile_a| and |profile_b|. Returns true if they match.
-bool ProfilesMatch(int profile_a, int profile_b) WARN_UNUSED_RESULT;
-
-// Compares the autofill profiles for all sync profiles, and returns true if
-// they all match.
-bool AllProfilesMatch() WARN_UNUSED_RESULT;
-
-// Creates a test autofill profile based on the persona specified in |type|.
-AutofillProfile CreateAutofillProfile(ProfileType type);
-
-} // namespace autofill_helper
-
-#endif // CHROME_TEST_LIVE_SYNC_AUTOFILL_HELPER_H_
« no previous file with comments | « chrome/test/live_sync/apps_helper.cc ('k') | chrome/test/live_sync/autofill_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698