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

Side by Side Diff: Source/modules/geolocation/Geolocation.h

Issue 403013002: Rename WebCore to blink in Modules (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All Rights Reserved.
3 * Copyright 2010, The Android Open Source Project 3 * Copyright 2010, The Android Open Source Project
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
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 21 matching lines...) Expand all
32 #include "core/dom/ActiveDOMObject.h" 32 #include "core/dom/ActiveDOMObject.h"
33 #include "modules/geolocation/GeoNotifier.h" 33 #include "modules/geolocation/GeoNotifier.h"
34 #include "modules/geolocation/Geoposition.h" 34 #include "modules/geolocation/Geoposition.h"
35 #include "modules/geolocation/PositionCallback.h" 35 #include "modules/geolocation/PositionCallback.h"
36 #include "modules/geolocation/PositionError.h" 36 #include "modules/geolocation/PositionError.h"
37 #include "modules/geolocation/PositionErrorCallback.h" 37 #include "modules/geolocation/PositionErrorCallback.h"
38 #include "modules/geolocation/PositionOptions.h" 38 #include "modules/geolocation/PositionOptions.h"
39 #include "platform/Timer.h" 39 #include "platform/Timer.h"
40 #include "platform/heap/Handle.h" 40 #include "platform/heap/Handle.h"
41 41
42 namespace WebCore { 42 namespace blink {
43 43
44 class Dictionary; 44 class Dictionary;
45 class Document; 45 class Document;
46 class LocalFrame; 46 class LocalFrame;
47 class GeofencingRegion; 47 class GeofencingRegion;
48 class GeolocationController; 48 class GeolocationController;
49 class GeolocationError; 49 class GeolocationError;
50 class GeolocationPosition; 50 class GeolocationPosition;
51 class ExecutionContext; 51 class ExecutionContext;
52 52
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 PermissionRequested, 200 PermissionRequested,
201 PermissionAllowed, 201 PermissionAllowed,
202 PermissionDenied 202 PermissionDenied
203 }; 203 };
204 204
205 Permission m_geolocationPermission; 205 Permission m_geolocationPermission;
206 206
207 GeoNotifierSet m_requestsAwaitingCachedPosition; 207 GeoNotifierSet m_requestsAwaitingCachedPosition;
208 }; 208 };
209 209
210 } // namespace WebCore 210 } // namespace blink
211 211
212 #endif // Geolocation_h 212 #endif // Geolocation_h
OLDNEW
« no previous file with comments | « Source/modules/geolocation/GeofencingRegion.h ('k') | Source/modules/geolocation/Geolocation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698