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

Side by Side Diff: webkit/port/bindings/v8/v8_index.cpp

Issue 125035: A first pass at the DOM Storage V8 bindings. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | Annotate | Revision Log
« no previous file with comments | « webkit/port/bindings/v8/v8_index.h ('k') | webkit/port/bindings/v8/v8_proxy.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 // Copyright (c) 2008, Google Inc. 1 // Copyright (c) 2008, Google Inc.
2 // All rights reserved. 2 // 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 are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // * Redistributions of source code must retain the above copyright 8 // * 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 // * Redistributions in binary form must reproduce the above 10 // * Redistributions in binary form must reproduce the above
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 #include "V8XPathNSResolver.h" 195 #include "V8XPathNSResolver.h"
196 #include "V8XMLHttpRequest.h" 196 #include "V8XMLHttpRequest.h"
197 #include "V8XMLHttpRequestException.h" 197 #include "V8XMLHttpRequestException.h"
198 #include "V8XMLHttpRequestProgressEvent.h" 198 #include "V8XMLHttpRequestProgressEvent.h"
199 #include "V8XMLHttpRequestUpload.h" 199 #include "V8XMLHttpRequestUpload.h"
200 #include "V8XMLSerializer.h" 200 #include "V8XMLSerializer.h"
201 #include "V8XPathEvaluator.h" 201 #include "V8XPathEvaluator.h"
202 #include "V8XSLTProcessor.h" 202 #include "V8XSLTProcessor.h"
203 #include "V8RGBColor.h" 203 #include "V8RGBColor.h"
204 204
205 #if ENABLE(DOM_STORAGE)
206 #include "V8Storage.h"
207 #include "V8StorageEvent.h"
208 #endif
209
205 #if ENABLE(SVG_ANIMATION) 210 #if ENABLE(SVG_ANIMATION)
206 #include "V8SVGAnimateColorElement.h" 211 #include "V8SVGAnimateColorElement.h"
207 #include "V8SVGAnimateElement.h" 212 #include "V8SVGAnimateElement.h"
208 #include "V8SVGAnimateTransformElement.h" 213 #include "V8SVGAnimateTransformElement.h"
209 #include "V8SVGAnimationElement.h" 214 #include "V8SVGAnimationElement.h"
210 #include "V8SVGSetElement.h" 215 #include "V8SVGSetElement.h"
211 #endif 216 #endif
212 217
213 #if ENABLE(SVG_FILTERS) 218 #if ENABLE(SVG_FILTERS)
214 #include "V8SVGComponentTransferFunctionElement.h" 219 #include "V8SVGComponentTransferFunctionElement.h"
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 case V8ClassIndex::type: return &name##_cache_; 399 case V8ClassIndex::type: return &name##_cache_;
395 ALL_WRAPPER_TYPES(MAKE_CASE) 400 ALL_WRAPPER_TYPES(MAKE_CASE)
396 #undef MAKE_CASE 401 #undef MAKE_CASE
397 default: 402 default:
398 ASSERT(false); 403 ASSERT(false);
399 return NULL; 404 return NULL;
400 } 405 }
401 } 406 }
402 407
403 } // namespace WebCore 408 } // namespace WebCore
OLDNEW
« no previous file with comments | « webkit/port/bindings/v8/v8_index.h ('k') | webkit/port/bindings/v8/v8_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698