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

Side by Side Diff: chrome/browser/local_discovery/wifi/wifi_client.cc

Issue 226883002: WiFi client for GCD bootstrapping (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/local_discovery/wifi/wifi_client.h"
6
7 #if defined(OS_WIN) || defined(OS_MACOSX)
8 #include "chrome/browser/local_discovery/wifi/wifi_service_client.h"
9 #endif
10
11 namespace local_discovery {
12
13 namespace wifi {
14
15 scoped_ptr<WifiClient> WifiClient::Create() {
16 #if defined(OS_WIN) || defined(OS_MACOSX)
17 return scoped_ptr<WifiClient>(new WifiServiceClient());
18 #endif
stevenjb 2014/05/05 18:19:49 This won't compile on other platforms, you should
Noam Samuel 2014/05/05 21:42:51 Done.
19 }
20
21 } // namespace wifi
22
23 } // namespace local_discovery
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698