From deb16806c9991b694052b4a6a34336bb261ccda3 Mon Sep 17 00:00:00 2001 From: "kalman@chromium.org" <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> Date: Thu, 16 Feb 2012 09:37:10 +0000 Subject: Add sync integration tests for extension settings. R=akalin@chromium.org BUG= TEST=sync_integrations_tests --gtest_filter=TwoClientExtensionSettingsSyncTest.* Review URL: http://codereview.chromium.org/9347014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122256 0039d316-1c4b-4281-b951-d872f2087c98 --- .../test/integration/extension_settings_helper.h | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 chrome/browser/sync/test/integration/extension_settings_helper.h (limited to 'chrome/browser/sync/test/integration/extension_settings_helper.h') diff --git a/chrome/browser/sync/test/integration/extension_settings_helper.h b/chrome/browser/sync/test/integration/extension_settings_helper.h new file mode 100644 index 0000000..7e92697 --- /dev/null +++ b/chrome/browser/sync/test/integration/extension_settings_helper.h @@ -0,0 +1,33 @@ +// Copyright (c) 2012 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_BROWSER_SYNC_TEST_INTEGRATION_EXTENSION_SETTINGS_HELPER_H_ +#define CHROME_BROWSER_SYNC_TEST_INTEGRATION_EXTENSION_SETTINGS_HELPER_H_ +#pragma once + +#include <string> + +class Profile; +namespace base { +class DictionaryValue; +} + +namespace extension_settings_helper { + +// Calls Set() with |settings| for |profile| and the extension with ID |id|. +void SetExtensionSettings( + Profile* profile, + const std::string& id, + const base::DictionaryValue& settings); + +// Calls Set() with |settings| for all profiles the extension with ID |id|. +void SetExtensionSettingsForAllProfiles( + const std::string& id, const base::DictionaryValue& settings); + +// Returns whether the extension settings are the same across all profiles. +bool AllExtensionSettingsSameAsVerifier(); + +} // namespace extension_settings_helper + +#endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_EXTENSION_SETTINGS_HELPER_H_ -- cgit v1.1