| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 scoped_refptr<DevToolsFileSystemIndexer::FileSystemIndexingJob> > | 209 scoped_refptr<DevToolsFileSystemIndexer::FileSystemIndexingJob> > |
| 210 IndexingJobsMap; | 210 IndexingJobsMap; |
| 211 IndexingJobsMap indexing_jobs_; | 211 IndexingJobsMap indexing_jobs_; |
| 212 | 212 |
| 213 bool device_count_updates_enabled_; | 213 bool device_count_updates_enabled_; |
| 214 bool devices_updates_enabled_; | 214 bool devices_updates_enabled_; |
| 215 bool frontend_loaded_; | 215 bool frontend_loaded_; |
| 216 scoped_ptr<DevToolsTargetsUIHandler> remote_targets_handler_; | 216 scoped_ptr<DevToolsTargetsUIHandler> remote_targets_handler_; |
| 217 scoped_ptr<DevToolsEmbedderMessageDispatcher> embedder_message_dispatcher_; | 217 scoped_ptr<DevToolsEmbedderMessageDispatcher> embedder_message_dispatcher_; |
| 218 GURL url_; | 218 GURL url_; |
| 219 using PendingRequestsMap = std::map<const net::URLFetcher*, int>; | 219 using PendingRequestsMap = |
| 220 std::map<const net::URLFetcher*, std::pair<int, int>>; |
| 220 PendingRequestsMap pending_requests_; | 221 PendingRequestsMap pending_requests_; |
| 221 base::WeakPtrFactory<DevToolsUIBindings> weak_factory_; | 222 base::WeakPtrFactory<DevToolsUIBindings> weak_factory_; |
| 222 | 223 |
| 223 DISALLOW_COPY_AND_ASSIGN(DevToolsUIBindings); | 224 DISALLOW_COPY_AND_ASSIGN(DevToolsUIBindings); |
| 224 }; | 225 }; |
| 225 | 226 |
| 226 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_UI_BINDINGS_H_ | 227 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_UI_BINDINGS_H_ |
| OLD | NEW |