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

Side by Side Diff: chrome_frame/test/reliability/reliability_test_suite.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_FRAME_TEST_RELIABILITY_RELIABILITY_TEST_SUITE_H_
6 #define CHROME_FRAME_TEST_RELIABILITY_RELIABILITY_TEST_SUITE_H_
7
8 #include "base/win/scoped_com_initializer.h"
9 #include "chrome_frame/test/reliability/page_load_test.h"
10 #include "chrome/test/ui/ui_test_suite.h"
11
12 class ReliabilityTestSuite : public UITestSuite {
13 public:
14 ReliabilityTestSuite(int argc, char** argv) : UITestSuite(argc, argv) {
15 }
16
17 private:
18 virtual void Initialize() OVERRIDE {
19 com_initializer_.reset(new base::win::ScopedCOMInitializer(
20 base::win::ScopedCOMInitializer::kMTA));
21 SetPageRange(*CommandLine::ForCurrentProcess());
22 UITestSuite::Initialize();
23 }
24
25 virtual void Shutdown() OVERRIDE {
26 UITestSuite::Shutdown();
27 com_initializer_.reset();
28 }
29
30 scoped_ptr<base::win::ScopedCOMInitializer> com_initializer_;
31
32 DISALLOW_COPY_AND_ASSIGN(ReliabilityTestSuite);
33 };
34
35 #endif // CHROME_FRAME_TEST_RELIABILITY_RELIABILITY_TEST_SUITE_H_
36
OLDNEW
« no previous file with comments | « chrome_frame/test/reliability/page_load_test.cc ('k') | chrome_frame/test/reliability/run_all_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698