| 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_INSPECT_UI_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 50 |
| 51 void OnAdbPages(const content::WebUIDataSource::GotDataCallback& callback, | 51 void OnAdbPages(const content::WebUIDataSource::GotDataCallback& callback, |
| 52 int result, | 52 int result, |
| 53 DevToolsAdbBridge::RemotePages* pages); | 53 DevToolsAdbBridge::RemotePages* pages); |
| 54 | 54 |
| 55 scoped_refptr<WorkerCreationDestructionListener> observer_; | 55 scoped_refptr<WorkerCreationDestructionListener> observer_; |
| 56 | 56 |
| 57 // A scoped container for notification registries. | 57 // A scoped container for notification registries. |
| 58 content::NotificationRegistrar registrar_; | 58 content::NotificationRegistrar registrar_; |
| 59 | 59 |
| 60 scoped_ptr<DevToolsAdbBridge> adb_bridge_; | 60 DevToolsAdbBridge* adb_bridge_; |
| 61 base::WeakPtrFactory<InspectUI> weak_factory_; | 61 base::WeakPtrFactory<InspectUI> weak_factory_; |
| 62 | 62 |
| 63 DISALLOW_COPY_AND_ASSIGN(InspectUI); | 63 DISALLOW_COPY_AND_ASSIGN(InspectUI); |
| 64 }; | 64 }; |
| 65 | 65 |
| 66 #endif // CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_ | 66 #endif // CHROME_BROWSER_UI_WEBUI_INSPECT_UI_H_ |
| OLD | NEW |