OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |