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

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

Issue 812873003: Clean up forward declarations in WebKit/Source (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: style fix Created 6 years 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 | « Source/modules/fetch/Response.h ('k') | Source/modules/webdatabase/DatabaseContext.h » ('j') | 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) 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 23 matching lines...) Expand all
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 blink { 42 namespace blink {
43 43
44 class Dictionary;
45 class Document; 44 class Document;
46 class LocalFrame; 45 class LocalFrame;
47 class GeolocationError; 46 class GeolocationError;
48 class ExecutionContext; 47 class ExecutionContext;
49 48
50 class Geolocation final 49 class Geolocation final
51 : public GarbageCollectedFinalized<Geolocation> 50 : public GarbageCollectedFinalized<Geolocation>
52 , public ScriptWrappable 51 , public ScriptWrappable
53 , public ActiveDOMObject { 52 , public ActiveDOMObject {
54 DEFINE_WRAPPERTYPEINFO(); 53 DEFINE_WRAPPERTYPEINFO();
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 }; 182 };
184 183
185 Permission m_geolocationPermission; 184 Permission m_geolocationPermission;
186 185
187 GeoNotifierSet m_requestsAwaitingCachedPosition; 186 GeoNotifierSet m_requestsAwaitingCachedPosition;
188 }; 187 };
189 188
190 } // namespace blink 189 } // namespace blink
191 190
192 #endif // Geolocation_h 191 #endif // Geolocation_h
OLDNEW
« no previous file with comments | « Source/modules/fetch/Response.h ('k') | Source/modules/webdatabase/DatabaseContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698