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 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 629 | 629 |
| 630 // Attaches |environment| to |function| and returns it. | 630 // Attaches |environment| to |function| and returns it. |
| 631 inline v8::Local<v8::Function> createClosure(v8::FunctionCallback function, v8::Handle<v8::Value> environment) | 631 inline v8::Local<v8::Function> createClosure(v8::FunctionCallback function, v8::Handle<v8::Value> environment) |
| 632 { | 632 { |
| 633 return v8::FunctionTemplate::New(function, environment)->GetFunction(); | 633 return v8::FunctionTemplate::New(function, environment)->GetFunction(); |
| 634 } | 634 } |
| 635 | 635 |
| 636 v8::Local<v8::Value> getHiddenValueFromMainWorldWrapper(v8::Isolate*, Script Wrappable*, v8::Handle<v8::String> key); | 636 v8::Local<v8::Value> getHiddenValueFromMainWorldWrapper(v8::Isolate*, Script Wrappable*, v8::Handle<v8::String> key); |
| 637 | 637 |
| 638 v8::Isolate* getIsolateFromScriptExecutionContext(ScriptExecutionContext*); | 638 v8::Isolate* getIsolateFromScriptExecutionContext(ScriptExecutionContext*); |
| 639 v8::Isolate* getIsolateFromFrame(Frame*); | |
|
pfeldman
2013/09/12 07:54:15
All these get prefixes are against the code style.
| |
| 639 | 640 |
| 640 } // namespace WebCore | 641 } // namespace WebCore |
| 641 | 642 |
| 642 #endif // V8Binding_h | 643 #endif // V8Binding_h |
| OLD | NEW |