OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome_frame/test/ie_configurator.h" | 5 #include "chrome_frame/test/ie_configurator.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 #include <objbase.h> | 8 #include <objbase.h> |
9 | 9 |
10 #include <ios> | 10 #include <ios> |
11 #include <list> | 11 #include <list> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
16 #include "base/strings/string16.h" | 16 #include "base/strings/string16.h" |
17 #include "base/time.h" | 17 #include "base/time/time.h" |
18 #include "base/win/registry.h" | 18 #include "base/win/registry.h" |
19 #include "chrome_frame/chrome_tab.h" | 19 #include "chrome_frame/chrome_tab.h" |
20 #include "chrome_frame/test/chrome_frame_test_utils.h" | 20 #include "chrome_frame/test/chrome_frame_test_utils.h" |
21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
22 | 22 |
23 namespace chrome_frame_test { | 23 namespace chrome_frame_test { |
24 | 24 |
25 namespace { | 25 namespace { |
26 | 26 |
27 const wchar_t kKeyIEApprovedExtensions[] = | 27 const wchar_t kKeyIEApprovedExtensions[] = |
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
589 void InstallIEConfigurator() { | 589 void InstallIEConfigurator() { |
590 IEConfigurator* configurator = CreateConfigurator(); | 590 IEConfigurator* configurator = CreateConfigurator(); |
591 | 591 |
592 if (configurator != NULL) { | 592 if (configurator != NULL) { |
593 testing::UnitTest::GetInstance()->listeners().Append( | 593 testing::UnitTest::GetInstance()->listeners().Append( |
594 new ConfiguratorDriver(configurator)); | 594 new ConfiguratorDriver(configurator)); |
595 } | 595 } |
596 } | 596 } |
597 | 597 |
598 } // namespace chrome_frame_test | 598 } // namespace chrome_frame_test |
OLD | NEW |