| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 CHROME_BROWSER_VIEWS_ABOUT_IPC_DIALOG_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_ABOUT_IPC_DIALOG_H_ |
| 6 #define CHROME_BROWSER_VIEWS_ABOUT_IPC_DIALOG_H_ | 6 #define CHROME_BROWSER_VIEWS_ABOUT_IPC_DIALOG_H_ |
| 7 | 7 |
| 8 #include "base/singleton.h" | 8 #include "base/singleton.h" |
| 9 #include "chrome/common/ipc_logging.h" | 9 #include "ipc/ipc_logging.h" |
| 10 #include "views/controls/button/button.h" | 10 #include "views/controls/button/button.h" |
| 11 #include "views/controls/table/table_view.h" | 11 #include "views/controls/table/table_view.h" |
| 12 #include "views/window/dialog_delegate.h" | 12 #include "views/window/dialog_delegate.h" |
| 13 | 13 |
| 14 #if defined(OS_WIN) && defined(IPC_MESSAGE_LOG_ENABLED) | 14 #if defined(OS_WIN) && defined(IPC_MESSAGE_LOG_ENABLED) |
| 15 | 15 |
| 16 class Profile; | 16 class Profile; |
| 17 namespace views { | 17 namespace views { |
| 18 class NativeViewHost; | 18 class NativeViewHost; |
| 19 class TextButton; | 19 class TextButton; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 // Set to true when we're tracking network status. | 64 // Set to true when we're tracking network status. |
| 65 bool tracking_; | 65 bool tracking_; |
| 66 | 66 |
| 67 DISALLOW_COPY_AND_ASSIGN(AboutIPCDialog); | 67 DISALLOW_COPY_AND_ASSIGN(AboutIPCDialog); |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 #endif // OS_WIN && IPC_MESSAGE_LOG_ENABLED | 70 #endif // OS_WIN && IPC_MESSAGE_LOG_ENABLED |
| 71 | 71 |
| 72 #endif // CHROME_BROWSER_VIEWS_ABOUT_IPC_DIALOG_H_ | 72 #endif // CHROME_BROWSER_VIEWS_ABOUT_IPC_DIALOG_H_ |
| OLD | NEW |