Index: chrome/common/chrome_paths_win.cc |
=================================================================== |
--- chrome/common/chrome_paths_win.cc (revision 90470) |
+++ chrome/common/chrome_paths_win.cc (working copy) |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2006-2008 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. |
@@ -10,10 +10,10 @@ |
#include <shlobj.h> |
#include <shobjidl.h> |
+#include "app/win/scoped_co_mem.h" |
#include "base/file_path.h" |
#include "base/path_service.h" |
#include "chrome/common/chrome_constants.h" |
-#include "chrome/common/scoped_co_mem.h" |
#include "chrome/installer/util/browser_distribution.h" |
namespace chrome { |
@@ -71,7 +71,7 @@ |
REFKNOWNFOLDERID, DWORD, HANDLE, PWSTR*); |
GetKnownFolderPath f = reinterpret_cast<GetKnownFolderPath>( |
GetProcAddress(GetModuleHandle(L"shell32.dll"), "SHGetKnownFolderPath")); |
- chrome::common::ScopedCoMem<wchar_t> path_buf; |
+ app::win::ScopedCoMem<wchar_t> path_buf; |
if (f && SUCCEEDED(f(FOLDERID_Downloads, 0, NULL, &path_buf))) { |
*result = FilePath(std::wstring(path_buf)); |
return true; |