OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/common/platform_util.h" | 5 #include "chrome/browser/platform_util.h" |
6 | 6 |
7 #include <commdlg.h> | 7 #include <commdlg.h> |
8 #include <dwmapi.h> | 8 #include <dwmapi.h> |
9 #include <shellapi.h> | 9 #include <shellapi.h> |
10 #include <shlobj.h> | 10 #include <shlobj.h> |
11 | 11 |
12 #include "app/win_util.h" | 12 #include "app/win_util.h" |
13 #include "base/file_path.h" | 13 #include "base/file_path.h" |
14 #include "base/file_util.h" | 14 #include "base/file_util.h" |
15 #include "base/path_service.h" | 15 #include "base/path_service.h" |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 | 164 |
165 GoogleUpdateSettings::GetChromeChannel(is_system_install, &channel); | 165 GoogleUpdateSettings::GetChromeChannel(is_system_install, &channel); |
166 } | 166 } |
167 return channel; | 167 return channel; |
168 #else | 168 #else |
169 return string16(); | 169 return string16(); |
170 #endif | 170 #endif |
171 } | 171 } |
172 | 172 |
173 } // namespace platform_util | 173 } // namespace platform_util |
OLD | NEW |