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

Side by Side Diff: chromeos/geolocation/simple_geolocation_request_test_monitor.h

Issue 1819173002: SimpleGeolocation should support sending WiFi AP data. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update after review. Created 4 years, 9 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 2016 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 #ifndef CHROMEOS_GEOLOCATION_SIMPLE_GEOLOCATION_REQUEST_TEST_MONITOR_H_
6 #define CHROMEOS_GEOLOCATION_SIMPLE_GEOLOCATION_REQUEST_TEST_MONITOR_H_
7
8 #include "base/macros.h"
9
10 namespace chromeos {
11
12 class SimpleGeolocationRequest;
13
14 // This is global hook, that allows to monitor SimpleGeolocationRequest
15 // in tests.
16
17 class SimpleGeolocationRequestTestMonitor {
18 public:
19 SimpleGeolocationRequestTestMonitor();
20
21 virtual ~SimpleGeolocationRequestTestMonitor();
22 virtual void OnRequestCreated(SimpleGeolocationRequest* request);
23 virtual void OnStart(SimpleGeolocationRequest* request);
24
25 private:
26 DISALLOW_COPY_AND_ASSIGN(SimpleGeolocationRequestTestMonitor);
27 };
28
29 } // namespace chromeos
30
31 #endif // CHROMEOS_GEOLOCATION_SIMPLE_GEOLOCATION_REQUEST_TEST_MONITOR_H_
OLDNEW
« no previous file with comments | « chromeos/geolocation/simple_geolocation_request.cc ('k') | chromeos/geolocation/simple_geolocation_request_test_monitor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698