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

Side by Side Diff: chrome/browser/local_discovery/service_discovery_shared_client.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/local_discovery/service_discovery_shared_client.h" 5 #include "chrome/browser/local_discovery/service_discovery_shared_client.h"
6 6
7 #include "build/build_config.h"
8
7 #if defined(OS_WIN) 9 #if defined(OS_WIN)
8 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
9 #include "base/metrics/histogram.h" 11 #include "base/metrics/histogram.h"
10 #include "base/path_service.h" 12 #include "base/path_service.h"
11 #include "base/timer/elapsed_timer.h" 13 #include "base/timer/elapsed_timer.h"
12 #include "chrome/installer/util/browser_distribution.h" 14 #include "chrome/installer/util/browser_distribution.h"
13 #include "chrome/installer/util/firewall_manager_win.h" 15 #include "chrome/installer/util/firewall_manager_win.h"
14 #endif // OS_WIN 16 #endif // OS_WIN
15 17
16 #if defined(OS_MACOSX) 18 #if defined(OS_MACOSX)
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 scoped_refptr<ServiceDiscoverySharedClient> 135 scoped_refptr<ServiceDiscoverySharedClient>
134 ServiceDiscoverySharedClient::GetInstance() { 136 ServiceDiscoverySharedClient::GetInstance() {
135 DCHECK_CURRENTLY_ON(BrowserThread::UI); 137 DCHECK_CURRENTLY_ON(BrowserThread::UI);
136 NOTIMPLEMENTED(); 138 NOTIMPLEMENTED();
137 return NULL; 139 return NULL;
138 } 140 }
139 141
140 #endif // ENABLE_MDNS 142 #endif // ENABLE_MDNS
141 143
142 } // namespace local_discovery 144 } // namespace local_discovery
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698