| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #ifndef UI_SHELL_DIALOGS_BASE_SHELL_DIALOG_WIN_H_ | 5 #ifndef UI_SHELL_DIALOGS_BASE_SHELL_DIALOG_WIN_H_ |
| 6 #define UI_SHELL_DIALOGS_BASE_SHELL_DIALOG_WIN_H_ | 6 #define UI_SHELL_DIALOGS_BASE_SHELL_DIALOG_WIN_H_ |
| 7 | 7 |
| 8 #include <shlobj.h> | 8 #include <shlobj.h> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| 11 #include "base/macros.h" |
| 11 #include "ui/shell_dialogs/base_shell_dialog.h" | 12 #include "ui/shell_dialogs/base_shell_dialog.h" |
| 12 #include "ui/shell_dialogs/shell_dialogs_export.h" | 13 #include "ui/shell_dialogs/shell_dialogs_export.h" |
| 13 | 14 |
| 14 namespace base { | 15 namespace base { |
| 15 class Thread; | 16 class Thread; |
| 16 } | 17 } |
| 17 | 18 |
| 18 namespace ui { | 19 namespace ui { |
| 19 | 20 |
| 20 /////////////////////////////////////////////////////////////////////////////// | 21 /////////////////////////////////////////////////////////////////////////////// |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 static Owners owners_; | 90 static Owners owners_; |
| 90 static int instance_count_; | 91 static int instance_count_; |
| 91 | 92 |
| 92 DISALLOW_COPY_AND_ASSIGN(BaseShellDialogImpl); | 93 DISALLOW_COPY_AND_ASSIGN(BaseShellDialogImpl); |
| 93 }; | 94 }; |
| 94 | 95 |
| 95 } // namespace ui | 96 } // namespace ui |
| 96 | 97 |
| 97 #endif // UI_SHELL_DIALOGS_BASE_SHELL_DIALOG_WIN_H_ | 98 #endif // UI_SHELL_DIALOGS_BASE_SHELL_DIALOG_WIN_H_ |
| 98 | 99 |
| OLD | NEW |