 Chromium Code Reviews
 Chromium Code Reviews Issue 390833003:
  Remove PropertyAttributes from SetProperty  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
    
  
    Issue 390833003:
  Remove PropertyAttributes from SetProperty  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge| Index: include/v8.h | 
| diff --git a/include/v8.h b/include/v8.h | 
| index 82d5784514fa2075cc026b28780830d0cff24a87..ee3acabc41ecc4a8a781723e5633f95295c1d1f9 100644 | 
| --- a/include/v8.h | 
| +++ b/include/v8.h | 
| @@ -2096,9 +2096,7 @@ enum AccessControl { | 
| */ | 
| class V8_EXPORT Object : public Value { | 
| public: | 
| - bool Set(Handle<Value> key, | 
| - Handle<Value> value, | 
| - PropertyAttribute attribs = None); | 
| + bool Set(Handle<Value> key, Handle<Value> value); | 
| bool Set(uint32_t index, Handle<Value> value); |