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_WEBUI_MEDIA_MEDIA_INTERNALS_PROXY_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_MEDIA_MEDIA_INTERNALS_PROXY_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_MEDIA_MEDIA_INTERNALS_PROXY_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_MEDIA_MEDIA_INTERNALS_PROXY_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/message_loop_helpers.h" | 10 #include "base/sequenced_task_runner_helpers.h" |
11 #include "base/string16.h" | 11 #include "base/string16.h" |
12 #include "chrome/browser/media/media_internals_observer.h" | 12 #include "chrome/browser/media/media_internals_observer.h" |
13 #include "content/public/browser/browser_thread.h" | 13 #include "content/public/browser/browser_thread.h" |
14 #include "content/public/browser/notification_observer.h" | 14 #include "content/public/browser/notification_observer.h" |
15 #include "content/public/browser/notification_registrar.h" | 15 #include "content/public/browser/notification_registrar.h" |
16 #include "net/base/net_log.h" | 16 #include "net/base/net_log.h" |
17 | 17 |
18 class IOThread; | 18 class IOThread; |
19 class MediaInternalsMessageHandler; | 19 class MediaInternalsMessageHandler; |
20 | 20 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 | 83 |
84 MediaInternalsMessageHandler* handler_; | 84 MediaInternalsMessageHandler* handler_; |
85 IOThread* io_thread_; | 85 IOThread* io_thread_; |
86 scoped_ptr<base::ListValue> pending_net_updates_; | 86 scoped_ptr<base::ListValue> pending_net_updates_; |
87 content::NotificationRegistrar registrar_; | 87 content::NotificationRegistrar registrar_; |
88 | 88 |
89 DISALLOW_COPY_AND_ASSIGN(MediaInternalsProxy); | 89 DISALLOW_COPY_AND_ASSIGN(MediaInternalsProxy); |
90 }; | 90 }; |
91 | 91 |
92 #endif // CHROME_BROWSER_UI_WEBUI_MEDIA_MEDIA_INTERNALS_PROXY_H_ | 92 #endif // CHROME_BROWSER_UI_WEBUI_MEDIA_MEDIA_INTERNALS_PROXY_H_ |
OLD | NEW |