Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2012 Ericsson AB. All rights reserved. | 3 * Copyright (C) 2012 Ericsson AB. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 718 } | 718 } |
| 719 | 719 |
| 720 v8::Local<v8::Value> getHiddenValueFromMainWorldWrapper(v8::Isolate*, Script Wrappable*, v8::Handle<v8::String> key); | 720 v8::Local<v8::Value> getHiddenValueFromMainWorldWrapper(v8::Isolate*, Script Wrappable*, v8::Handle<v8::String> key); |
| 721 | 721 |
| 722 v8::Isolate* mainThreadIsolate(); | 722 v8::Isolate* mainThreadIsolate(); |
| 723 v8::Isolate* toIsolate(ExecutionContext*); | 723 v8::Isolate* toIsolate(ExecutionContext*); |
| 724 v8::Isolate* toIsolate(Frame*); | 724 v8::Isolate* toIsolate(Frame*); |
| 725 | 725 |
| 726 // Can only be called by blink::initialize | 726 // Can only be called by blink::initialize |
| 727 void setMainThreadIsolate(v8::Isolate*); | 727 void setMainThreadIsolate(v8::Isolate*); |
| 728 | |
| 729 // Converts a DOM object to a v8 value. | |
| 730 // Each specialized implementation will be generated. | |
|
haraken
2013/11/23 15:03:18
Would you add more comment about what this method
yhirano
2013/11/25 01:50:52
Done.
| |
| 731 template<typename T> | |
| 732 v8::Handle<v8::Value> toV8NoInline(T* impl, v8::Handle<v8::Object> creationC ontext, v8::Isolate*); | |
| 728 } // namespace WebCore | 733 } // namespace WebCore |
| 729 | 734 |
| 730 #endif // V8Binding_h | 735 #endif // V8Binding_h |
| OLD | NEW |