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 "base/test/test_shortcut_win.h" | 5 #include "base/test/test_shortcut_win.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 #include <shlobj.h> | 8 #include <shlobj.h> |
9 #include <propkey.h> | 9 #include <propkey.h> |
10 | 10 |
11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
12 #include "base/string16.h" | 12 #include "base/string16.h" |
13 #include "base/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
14 #include "base/win/scoped_comptr.h" | 14 #include "base/win/scoped_comptr.h" |
15 #include "base/win/scoped_propvariant.h" | 15 #include "base/win/scoped_propvariant.h" |
16 #include "base/win/windows_version.h" | 16 #include "base/win/windows_version.h" |
17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
18 | 18 |
19 namespace base { | 19 namespace base { |
20 namespace win { | 20 namespace win { |
21 | 21 |
22 namespace { | 22 namespace { |
23 | 23 |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 break; | 152 break; |
153 default: | 153 default: |
154 ADD_FAILURE() << "Unexpected variant type: " << pv_dual_mode.get().vt; | 154 ADD_FAILURE() << "Unexpected variant type: " << pv_dual_mode.get().vt; |
155 } | 155 } |
156 } | 156 } |
157 } | 157 } |
158 } | 158 } |
159 | 159 |
160 } // namespace win | 160 } // namespace win |
161 } // namespace base | 161 } // namespace base |
OLD | NEW |