| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_DEVTOOLS_DEVTOOLS_UI_BINDINGS_H_ | 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_UI_BINDINGS_H_ |
| 6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_UI_BINDINGS_H_ | 6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_UI_BINDINGS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 scoped_ptr<DevToolsFileHelper> file_helper_; | 212 scoped_ptr<DevToolsFileHelper> file_helper_; |
| 213 scoped_refptr<DevToolsFileSystemIndexer> file_system_indexer_; | 213 scoped_refptr<DevToolsFileSystemIndexer> file_system_indexer_; |
| 214 typedef std::map< | 214 typedef std::map< |
| 215 int, | 215 int, |
| 216 scoped_refptr<DevToolsFileSystemIndexer::FileSystemIndexingJob> > | 216 scoped_refptr<DevToolsFileSystemIndexer::FileSystemIndexingJob> > |
| 217 IndexingJobsMap; | 217 IndexingJobsMap; |
| 218 IndexingJobsMap indexing_jobs_; | 218 IndexingJobsMap indexing_jobs_; |
| 219 | 219 |
| 220 bool devices_updates_enabled_; | 220 bool devices_updates_enabled_; |
| 221 bool frontend_loaded_; | 221 bool frontend_loaded_; |
| 222 bool frontend_reattaching_; |
| 222 scoped_ptr<DevToolsTargetsUIHandler> remote_targets_handler_; | 223 scoped_ptr<DevToolsTargetsUIHandler> remote_targets_handler_; |
| 223 scoped_ptr<PortForwardingStatusSerializer> port_status_serializer_; | 224 scoped_ptr<PortForwardingStatusSerializer> port_status_serializer_; |
| 224 PrefChangeRegistrar pref_change_registrar_; | 225 PrefChangeRegistrar pref_change_registrar_; |
| 225 scoped_ptr<DevToolsEmbedderMessageDispatcher> embedder_message_dispatcher_; | 226 scoped_ptr<DevToolsEmbedderMessageDispatcher> embedder_message_dispatcher_; |
| 226 GURL url_; | 227 GURL url_; |
| 227 using PendingRequestsMap = std::map<const net::URLFetcher*, DispatchCallback>; | 228 using PendingRequestsMap = std::map<const net::URLFetcher*, DispatchCallback>; |
| 228 PendingRequestsMap pending_requests_; | 229 PendingRequestsMap pending_requests_; |
| 229 base::WeakPtrFactory<DevToolsUIBindings> weak_factory_; | 230 base::WeakPtrFactory<DevToolsUIBindings> weak_factory_; |
| 230 | 231 |
| 231 DISALLOW_COPY_AND_ASSIGN(DevToolsUIBindings); | 232 DISALLOW_COPY_AND_ASSIGN(DevToolsUIBindings); |
| 232 }; | 233 }; |
| 233 | 234 |
| 234 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_UI_BINDINGS_H_ | 235 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_UI_BINDINGS_H_ |
| OLD | NEW |