| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2009, The Android Open Source Project | 2 * Copyright 2009, The Android Open Source Project |
| 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 * * Redistributions of source code must retain the above copyright | 7 * * Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * * Redistributions in binary form must reproduce the above copyright | 9 * * Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include "bindings/modules/v8/V8Geolocation.h" | 27 #include "bindings/modules/v8/V8Geolocation.h" |
| 28 | 28 |
| 29 #include "bindings/modules/v8/V8PositionCallback.h" | 29 #include "bindings/modules/v8/V8PositionCallback.h" |
| 30 #include "bindings/modules/v8/V8PositionErrorCallback.h" | 30 #include "bindings/modules/v8/V8PositionErrorCallback.h" |
| 31 #include "bindings/v8/V8Binding.h" | 31 #include "bindings/v8/V8Binding.h" |
| 32 #include "bindings/v8/V8Callback.h" | 32 #include "bindings/v8/V8Callback.h" |
| 33 #include "modules/geolocation/Geolocation.h" | 33 #include "modules/geolocation/Geolocation.h" |
| 34 | 34 |
| 35 using namespace std; | |
| 36 using namespace WTF; | 35 using namespace WTF; |
| 37 | 36 |
| 38 namespace WebCore { | 37 namespace WebCore { |
| 39 | 38 |
| 40 static PositionOptions* createPositionOptions(v8::Local<v8::Value> value, v8::Is
olate* isolate, bool& succeeded, ExceptionState& exceptionState) | 39 static PositionOptions* createPositionOptions(v8::Local<v8::Value> value, v8::Is
olate* isolate, bool& succeeded, ExceptionState& exceptionState) |
| 41 { | 40 { |
| 42 succeeded = true; | 41 succeeded = true; |
| 43 | 42 |
| 44 // Create default options. | 43 // Create default options. |
| 45 PositionOptions* options = PositionOptions::create(); | 44 PositionOptions* options = PositionOptions::create(); |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 if (!succeeded) | 152 if (!succeeded) |
| 154 return; | 153 return; |
| 155 ASSERT(positionOptions); | 154 ASSERT(positionOptions); |
| 156 | 155 |
| 157 Geolocation* geolocation = V8Geolocation::toNative(info.Holder()); | 156 Geolocation* geolocation = V8Geolocation::toNative(info.Holder()); |
| 158 int watchId = geolocation->watchPosition(positionCallback.release(), positio
nErrorCallback.release(), positionOptions); | 157 int watchId = geolocation->watchPosition(positionCallback.release(), positio
nErrorCallback.release(), positionOptions); |
| 159 v8SetReturnValue(info, watchId); | 158 v8SetReturnValue(info, watchId); |
| 160 } | 159 } |
| 161 | 160 |
| 162 } // namespace WebCore | 161 } // namespace WebCore |
| OLD | NEW |