OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_UI_VIEWS_ABOUT_IPC_DIALOG_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_ABOUT_IPC_DIALOG_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_ABOUT_IPC_DIALOG_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_ABOUT_IPC_DIALOG_H_ |
7 | 7 |
8 #include "ipc/ipc_message.h" // For IPC_MESSAGE_LOG_ENABLED. | 8 #include "ipc/ipc_message.h" // For IPC_MESSAGE_LOG_ENABLED. |
9 | 9 |
10 #if defined(OS_WIN) && defined(IPC_MESSAGE_LOG_ENABLED) | 10 #if defined(OS_WIN) && defined(IPC_MESSAGE_LOG_ENABLED) |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 virtual void Layout() OVERRIDE; | 51 virtual void Layout() OVERRIDE; |
52 | 52 |
53 // IPC::Logging::Consumer implementation. | 53 // IPC::Logging::Consumer implementation. |
54 virtual void Log(const IPC::LogData& data) OVERRIDE; | 54 virtual void Log(const IPC::LogData& data) OVERRIDE; |
55 | 55 |
56 // views::WidgetDelegate (via views::DialogDelegateView). | 56 // views::WidgetDelegate (via views::DialogDelegateView). |
57 virtual bool CanResize() const OVERRIDE; | 57 virtual bool CanResize() const OVERRIDE; |
58 | 58 |
59 // views::ButtonListener. | 59 // views::ButtonListener. |
60 virtual void ButtonPressed(views::Button* button, | 60 virtual void ButtonPressed(views::Button* button, |
61 const views::Event& event) OVERRIDE; | 61 const ui::Event& event) OVERRIDE; |
62 | 62 |
63 WTL::CListViewCtrl message_list_; | 63 WTL::CListViewCtrl message_list_; |
64 | 64 |
65 views::TextButton* track_toggle_; | 65 views::TextButton* track_toggle_; |
66 views::TextButton* clear_button_; | 66 views::TextButton* clear_button_; |
67 views::TextButton* filter_button_; | 67 views::TextButton* filter_button_; |
68 views::NativeViewHost* table_; | 68 views::NativeViewHost* table_; |
69 | 69 |
70 // Set to true when we're tracking network status. | 70 // Set to true when we're tracking network status. |
71 bool tracking_; | 71 bool tracking_; |
72 | 72 |
73 DISALLOW_COPY_AND_ASSIGN(AboutIPCDialog); | 73 DISALLOW_COPY_AND_ASSIGN(AboutIPCDialog); |
74 }; | 74 }; |
75 | 75 |
76 #endif // OS_WIN && IPC_MESSAGE_LOG_ENABLED | 76 #endif // OS_WIN && IPC_MESSAGE_LOG_ENABLED |
77 | 77 |
78 #endif // CHROME_BROWSER_UI_VIEWS_ABOUT_IPC_DIALOG_H_ | 78 #endif // CHROME_BROWSER_UI_VIEWS_ABOUT_IPC_DIALOG_H_ |
OLD | NEW |