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

Unified Diff: chrome_frame/test/ie_configurator.h

Issue 126143005: Remove Chrome Frame code and resources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync to r244038 Created 6 years, 11 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_frame/test/http_negotiate_unittest.cc ('k') | chrome_frame/test/ie_configurator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/ie_configurator.h
diff --git a/chrome_frame/test/ie_configurator.h b/chrome_frame/test/ie_configurator.h
deleted file mode 100644
index 4294d096497742f456cfa0c4337b892d58766246..0000000000000000000000000000000000000000
--- a/chrome_frame/test/ie_configurator.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// 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.
-
-// The IE configurator mutates Internet Explorer's configuration to put it in a
-// (thought to be) known good state for the Chrome Frame tests. The current
-// user's IE configuration may be left in a different state than it was
-// initially; see the implementation for details.
-
-#ifndef CHROME_FRAME_TEST_IE_CONFIGURATOR_H_
-#define CHROME_FRAME_TEST_IE_CONFIGURATOR_H_
-
-#include "base/basictypes.h"
-
-namespace chrome_frame_test {
-
-// Abstract interface to be implemented for per-version configurators.
-class IEConfigurator {
- public:
- virtual ~IEConfigurator();
-
- // Initializes a configurator, causing it to cache existing configuration
- // settings that it will modify.
- virtual void Initialize() = 0;
-
- // Applies all configuration settings.
- virtual void ApplySettings() = 0;
-
- // Reverts all configuration settings.
- virtual void RevertSettings() = 0;
-
- protected:
- IEConfigurator();
-};
-
-// Returns a new configurator for the current configuration, or NULL if none
-// applies.
-IEConfigurator* CreateConfigurator();
-
-// Installs a configurator in the Google Test unit test singleton.
-void InstallIEConfigurator();
-
-} // namespace chrome_frame_test
-
-#endif // CHROME_FRAME_TEST_IE_CONFIGURATOR_H_
« no previous file with comments | « chrome_frame/test/http_negotiate_unittest.cc ('k') | chrome_frame/test/ie_configurator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698