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

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

Issue 4097: Implement better JS exception handling by abstracting KJS::ExecState into an ... (Closed) Base URL: svn://chrome-svn/chrome/branches/chrome_webkit_merge_branch/
Patch Set: '' Created 12 years, 2 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_nodefilter.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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 #include "V8HTMLUListElement.h" 132 #include "V8HTMLUListElement.h"
133 #include "V8ImageData.h" 133 #include "V8ImageData.h"
134 #include "V8InspectorController.h" 134 #include "V8InspectorController.h"
135 #include "V8MediaList.h" 135 #include "V8MediaList.h"
136 #include "V8MessageEvent.h" 136 #include "V8MessageEvent.h"
137 #include "V8NamedNodeMap.h" 137 #include "V8NamedNodeMap.h"
138 #include "V8Node.h" 138 #include "V8Node.h"
139 #include "V8NodeList.h" 139 #include "V8NodeList.h"
140 #include "V8NodeFilter.h" 140 #include "V8NodeFilter.h"
141 #include "V8Notation.h" 141 #include "V8Notation.h"
142 #include "V8NSResolver.h"
142 #include "V8ProcessingInstruction.h" 143 #include "V8ProcessingInstruction.h"
143 #include "V8ProgressEvent.h" 144 #include "V8ProgressEvent.h"
144 #include "V8StyleSheet.h" 145 #include "V8StyleSheet.h"
145 #include "V8Text.h" 146 #include "V8Text.h"
146 #include "V8TextEvent.h" 147 #include "V8TextEvent.h"
147 #include "V8DOMCoreException.h" 148 #include "V8DOMCoreException.h"
148 #include "V8DOMParser.h" 149 #include "V8DOMParser.h"
149 #include "V8DOMWindow.h" 150 #include "V8DOMWindow.h"
150 #include "V8Event.h" 151 #include "V8Event.h"
151 #include "V8EventException.h" 152 #include "V8EventException.h"
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 case V8ClassIndex::type: return &name##_cache_; 359 case V8ClassIndex::type: return &name##_cache_;
359 ALL_WRAPPER_TYPES(MAKE_CASE) 360 ALL_WRAPPER_TYPES(MAKE_CASE)
360 #undef MAKE_CASE 361 #undef MAKE_CASE
361 default: 362 default:
362 ASSERT(false); 363 ASSERT(false);
363 return NULL; 364 return NULL;
364 } 365 }
365 } 366 }
366 367
367 } // namespace WebCore 368 } // namespace WebCore
OLDNEW
« no previous file with comments | « webkit/port/bindings/v8/v8_index.h ('k') | webkit/port/bindings/v8/v8_nodefilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698