Chromium Code Reviews| Index: base/win/shell.h |
| diff --git a/app/win/shell.h b/base/win/shell.h |
| similarity index 86% |
| rename from app/win/shell.h |
| rename to base/win/shell.h |
| index 44ee3ba7cd09874fdbb5f18b22f5a01a2a9479b4..33efd48aef28d9de8c56a97ba66c1bfa3a929a2b 100644 |
| --- a/app/win/shell.h |
| +++ b/base/win/shell.h |
| @@ -1,9 +1,10 @@ |
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| +// Copyright (c) 2011 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. |
| -#ifndef APP_WIN_SHELL_H_ |
|
brettw
2011/06/23 16:13:04
I think this file should be in UI.
tfarina
2011/06/23 16:50:12
Done.
|
| -#define APP_WIN_SHELL_H_ |
| +#ifndef BASE_WIN_SHELL_H_ |
| +#define BASE_WIN_SHELL_H_ |
| +#pragma once |
| #include <windows.h> |
| @@ -11,7 +12,7 @@ |
| class FilePath; |
| -namespace app { |
| +namespace base { |
| namespace win { |
| // Open or run a file via the Windows shell. In the event that there is no |
| @@ -36,6 +37,6 @@ bool OpenItemWithExternalApp(const string16& full_path); |
| void SetAppIdForWindow(const string16& app_id, HWND hwnd); |
| } // namespace win |
| -} // namespace app |
| +} // namespace base |
| -#endif // APP_WIN_SHELL_H_ |
| +#endif // BASE_WIN_SHELL_H_ |