Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: chrome/browser/devtools/devtools_ui_bindings.h

Issue 969573002: DevTools: response writers need to post to the UI while sending into streams. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@loadNetwork
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/devtools/devtools_ui_bindings.cc » ('j') | chrome/browser/devtools/devtools_ui_bindings.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698