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

Side by Side Diff: Source/bindings/v8/custom/V8GeolocationCustom.cpp

Issue 330933002: Revert of Removing "using" declarations that import names in the C++ Standard library. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
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
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;
35 using namespace WTF; 36 using namespace WTF;
36 37
37 namespace WebCore { 38 namespace WebCore {
38 39
39 static PositionOptions* createPositionOptions(v8::Local<v8::Value> value, v8::Is olate* isolate, bool& succeeded, ExceptionState& exceptionState) 40 static PositionOptions* createPositionOptions(v8::Local<v8::Value> value, v8::Is olate* isolate, bool& succeeded, ExceptionState& exceptionState)
40 { 41 {
41 succeeded = true; 42 succeeded = true;
42 43
43 // Create default options. 44 // Create default options.
44 PositionOptions* options = PositionOptions::create(); 45 PositionOptions* options = PositionOptions::create();
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 if (!succeeded) 153 if (!succeeded)
153 return; 154 return;
154 ASSERT(positionOptions); 155 ASSERT(positionOptions);
155 156
156 Geolocation* geolocation = V8Geolocation::toNative(info.Holder()); 157 Geolocation* geolocation = V8Geolocation::toNative(info.Holder());
157 int watchId = geolocation->watchPosition(positionCallback.release(), positio nErrorCallback.release(), positionOptions); 158 int watchId = geolocation->watchPosition(positionCallback.release(), positio nErrorCallback.release(), positionOptions);
158 v8SetReturnValue(info, watchId); 159 v8SetReturnValue(info, watchId);
159 } 160 }
160 161
161 } // namespace WebCore 162 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp ('k') | Source/core/animation/AnimationTranslationUtil.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698