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

Side by Side Diff: chrome/browser/debugger/devtools_manager.cc

Issue 3020063: DevTools: get rid of delayed command dispatching on front-end side. (Closed)
Patch Set: Created 10 years, 4 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
« no previous file with comments | « no previous file | chrome/common/devtools_messages_internal.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #include "chrome/browser/debugger/devtools_manager.h" 5 #include "chrome/browser/debugger/devtools_manager.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/auto_reset.h" 9 #include "base/auto_reset.h"
10 #include "base/message_loop.h" 10 #include "base/message_loop.h"
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
398 DevToolsClientHost* client_host) { 398 DevToolsClientHost* client_host) {
399 DCHECK(inspected_rvh_to_client_host_.find(inspected_rvh)->second == 399 DCHECK(inspected_rvh_to_client_host_.find(inspected_rvh)->second ==
400 client_host); 400 client_host);
401 DCHECK(client_host_to_inspected_rvh_.find(client_host)->second == 401 DCHECK(client_host_to_inspected_rvh_.find(client_host)->second ==
402 inspected_rvh); 402 inspected_rvh);
403 403
404 inspected_rvh_to_client_host_.erase(inspected_rvh); 404 inspected_rvh_to_client_host_.erase(inspected_rvh);
405 client_host_to_inspected_rvh_.erase(client_host); 405 client_host_to_inspected_rvh_.erase(client_host);
406 runtime_features_map_.erase(inspected_rvh); 406 runtime_features_map_.erase(inspected_rvh);
407 } 407 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/devtools_messages_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698