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

Side by Side Diff: third_party/WebKit/public/web/WebGeolocationController.h

Issue 1919153002: Tidy up WebGeolocationController. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « third_party/WebKit/Source/web/WebGeolocationController.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 15 matching lines...) Expand all
26 #ifndef WebGeolocationController_h 26 #ifndef WebGeolocationController_h
27 #define WebGeolocationController_h 27 #define WebGeolocationController_h
28 28
29 #include "../platform/WebCommon.h" 29 #include "../platform/WebCommon.h"
30 #include "../platform/WebNonCopyable.h" 30 #include "../platform/WebNonCopyable.h"
31 #include "../platform/WebPrivatePtr.h" 31 #include "../platform/WebPrivatePtr.h"
32 32
33 namespace blink { 33 namespace blink {
34 34
35 class GeolocationController; 35 class GeolocationController;
36 class GeolocationControllerPrivate;
37 class WebGeolocationPosition; 36 class WebGeolocationPosition;
38 class WebGeolocationError; 37 class WebGeolocationError;
39 38
40 class WebGeolocationController : public WebNonCopyable { 39 class WebGeolocationController : public WebNonCopyable {
41 public: 40 public:
42 ~WebGeolocationController() { reset(); } 41 ~WebGeolocationController() { reset(); }
43 42
44 BLINK_EXPORT void positionChanged(const WebGeolocationPosition&); 43 BLINK_EXPORT void positionChanged(const WebGeolocationPosition&);
45 BLINK_EXPORT void errorOccurred(const WebGeolocationError&); 44 BLINK_EXPORT void errorOccurred(const WebGeolocationError&);
46 45
47 #if BLINK_IMPLEMENTATION 46 #if BLINK_IMPLEMENTATION
48 WebGeolocationController(GeolocationController*); 47 explicit WebGeolocationController(GeolocationController*);
tkent 2016/04/26 12:49:22 We usually allow implicit conversion between an in
49 #endif 48 #endif
50 49
51 private: 50 private:
52 // No implementation for the default constructor. Declared private to ensure that no instances 51 // No implementation for the default constructor. Declared private to ensure that no instances
53 // can be created by the consumers of Chromium WebKit. 52 // can be created by the consumers of Chromium WebKit.
54 WebGeolocationController(); 53 WebGeolocationController();
55 54
56 BLINK_EXPORT void reset(); 55 BLINK_EXPORT void reset();
57 56
58 WebPrivatePtr<GeolocationControllerPrivate> m_private; 57 WebPrivatePtr<GeolocationController> m_private;
59 }; 58 };
60 59
61 } // namespace blink 60 } // namespace blink
62 61
63 #endif // WebGeolocationController_h 62 #endif // WebGeolocationController_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebGeolocationController.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698