diff options
author | sail@chromium.org <sail@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-29 20:31:48 +0000 |
---|---|---|
committer | sail@chromium.org <sail@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-29 20:31:48 +0000 |
commit | c828c6b23db1484d54b6777641df883daea61429 (patch) | |
tree | 0e1d1d2bf09d4cd05d01028438e5e333f348c9e1 /chrome/browser/profiles/profile_info_cache_unittest.h | |
parent | 55bdb501e79d634b23bdbba0c90dfe557e9c628b (diff) | |
download | chromium_src-c828c6b23db1484d54b6777641df883daea61429.zip chromium_src-c828c6b23db1484d54b6777641df883daea61429.tar.gz chromium_src-c828c6b23db1484d54b6777641df883daea61429.tar.bz2 |
Revert 112006 - Add service to update GAIA info
BUG=91241
TEST=
Review URL: http://codereview.chromium.org/8587024
TBR=sail@chromium.org
Review URL: http://codereview.chromium.org/8662039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112017 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profiles/profile_info_cache_unittest.h')
-rw-r--r-- | chrome/browser/profiles/profile_info_cache_unittest.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/chrome/browser/profiles/profile_info_cache_unittest.h b/chrome/browser/profiles/profile_info_cache_unittest.h deleted file mode 100644 index a1d4485..0000000 --- a/chrome/browser/profiles/profile_info_cache_unittest.h +++ /dev/null @@ -1,36 +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_BROWSER_PROFILES_PROFILE_INFO_CACHE_UNITTEST_H_ -#define CHROME_BROWSER_PROFILES_PROFILE_INFO_CACHE_UNITTEST_H_ -#pragma once - -#include "chrome/test/base/testing_profile_manager.h" -#include "content/test/test_browser_thread.h" -#include "testing/gtest/include/gtest/gtest.h" - -class FilePath; -class ProfileInfoCache; - -class ProfileInfoCacheTest : public testing::Test { - protected: - ProfileInfoCacheTest(); - virtual ~ProfileInfoCacheTest(); - - virtual void SetUp() OVERRIDE; - - ProfileInfoCache* GetCache(); - FilePath GetProfilePath(const std::string& base_name); - void ResetCache(); - - protected: - TestingProfileManager testing_profile_manager_; - - private: - MessageLoopForUI ui_loop_; - content::TestBrowserThread ui_thread_; - content::TestBrowserThread file_thread_; -}; - -#endif // CHROME_BROWSER_PROFILES_PROFILE_INFO_CACHE_UNITTEST_H_ |