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

Side by Side Diff: src/objects.h

Issue 8834: Introduce access control in propertyIsEnumerable.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 1 month 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 | « no previous file | src/objects.cc » ('j') | src/objects.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1430 matching lines...) Expand 10 before | Expand all | Expand 10 after
1441 1441
1442 Object* DeleteElementPostInterceptor(uint32_t index); 1442 Object* DeleteElementPostInterceptor(uint32_t index);
1443 Object* DeleteElementWithInterceptor(uint32_t index); 1443 Object* DeleteElementWithInterceptor(uint32_t index);
1444 1444
1445 PropertyAttributes GetPropertyAttributePostInterceptor(JSObject* receiver, 1445 PropertyAttributes GetPropertyAttributePostInterceptor(JSObject* receiver,
1446 String* name, 1446 String* name,
1447 bool continue_search); 1447 bool continue_search);
1448 PropertyAttributes GetPropertyAttributeWithInterceptor(JSObject* receiver, 1448 PropertyAttributes GetPropertyAttributeWithInterceptor(JSObject* receiver,
1449 String* name, 1449 String* name,
1450 bool continue_search); 1450 bool continue_search);
1451 PropertyAttributes GetPropertyAttributeWithFailedAccessCheck(
1452 Object* receiver,
Mads Ager (chromium) 2008/10/28 20:02:38 This should be a four space indent. It looks like
1453 LookupResult* result,
1454 String* name);
1451 PropertyAttributes GetPropertyAttribute(JSObject* receiver, 1455 PropertyAttributes GetPropertyAttribute(JSObject* receiver,
1452 LookupResult* result, 1456 LookupResult* result,
1453 String* name, 1457 String* name,
1454 bool continue_search); 1458 bool continue_search);
1455 1459
1456 // Returns true if most of the elements backing storage is used. 1460 // Returns true if most of the elements backing storage is used.
1457 bool HasDenseElements(); 1461 bool HasDenseElements();
1458 1462
1459 Object* DefineGetterSetter(String* name, PropertyAttributes attributes); 1463 Object* DefineGetterSetter(String* name, PropertyAttributes attributes);
1460 1464
(...skipping 2660 matching lines...) Expand 10 before | Expand all | Expand 10 after
4121 } else { 4125 } else {
4122 value &= ~(1 << bit_position); 4126 value &= ~(1 << bit_position);
4123 } 4127 }
4124 return value; 4128 return value;
4125 } 4129 }
4126 }; 4130 };
4127 4131
4128 } } // namespace v8::internal 4132 } } // namespace v8::internal
4129 4133
4130 #endif // V8_OBJECTS_H_ 4134 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « no previous file | src/objects.cc » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698