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

Side by Side Diff: content/browser/devtools/devtools_manager.cc

Issue 1308823002: Move Singleton and related structs to namespace base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ToT Created 5 years, 3 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/browser/devtools/devtools_manager.h" 5 #include "content/browser/devtools/devtools_manager.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "content/browser/devtools/devtools_agent_host_impl.h" 9 #include "content/browser/devtools/devtools_agent_host_impl.h"
10 #include "content/browser/devtools/devtools_netlog_observer.h" 10 #include "content/browser/devtools/devtools_netlog_observer.h"
11 #include "content/public/browser/browser_thread.h" 11 #include "content/public/browser/browser_thread.h"
12 #include "content/public/browser/content_browser_client.h" 12 #include "content/public/browser/content_browser_client.h"
13 13
14 namespace content { 14 namespace content {
15 15
16 // static 16 // static
17 DevToolsManager* DevToolsManager::GetInstance() { 17 DevToolsManager* DevToolsManager::GetInstance() {
18 return Singleton<DevToolsManager>::get(); 18 return base::Singleton<DevToolsManager>::get();
19 } 19 }
20 20
21 DevToolsManager::DevToolsManager() 21 DevToolsManager::DevToolsManager()
22 : delegate_(GetContentClient()->browser()->GetDevToolsManagerDelegate()), 22 : delegate_(GetContentClient()->browser()->GetDevToolsManagerDelegate()),
23 attached_hosts_count_(0) { 23 attached_hosts_count_(0) {
24 } 24 }
25 25
26 DevToolsManager::~DevToolsManager() { 26 DevToolsManager::~DevToolsManager() {
27 DCHECK(!attached_hosts_count_); 27 DCHECK(!attached_hosts_count_);
28 } 28 }
(...skipping 13 matching lines...) Expand all
42 if (!attached_hosts_count_) { 42 if (!attached_hosts_count_) {
43 BrowserThread::PostTask( 43 BrowserThread::PostTask(
44 BrowserThread::IO, 44 BrowserThread::IO,
45 FROM_HERE, 45 FROM_HERE,
46 base::Bind(&DevToolsNetLogObserver::Detach)); 46 base::Bind(&DevToolsNetLogObserver::Detach));
47 } 47 }
48 } 48 }
49 } 49 }
50 50
51 } // namespace content 51 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/devtools/devtools_manager.h ('k') | content/browser/devtools/service_worker_devtools_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698