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

Side by Side Diff: Source/bindings/tests/results/V8TestCallback.h

Issue 14988008: Rename DOMPath IDL interface to Path to match the specification (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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
OLDNEW
1 /* 1 /*
2 This file is part of the Blink open source project. 2 This file is part of the Blink open source project.
3 This file has been auto-generated by CodeGeneratorV8.pm. DO NOT MODIFY! 3 This file has been auto-generated by CodeGeneratorV8.pm. DO NOT MODIFY!
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public 6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either 7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version. 8 version 2 of the License, or (at your option) any later version.
9 9
10 This library is distributed in the hope that it will be useful, 10 This library is distributed in the hope that it will be useful,
(...skipping 27 matching lines...) Expand all
38 { 38 {
39 ASSERT(value->IsObject()); 39 ASSERT(value->IsObject());
40 ASSERT(context); 40 ASSERT(context);
41 return adoptRef(new V8TestCallback(v8::Handle<v8::Object>::Cast(value), context)); 41 return adoptRef(new V8TestCallback(v8::Handle<v8::Object>::Cast(value), context));
42 } 42 }
43 43
44 virtual ~V8TestCallback(); 44 virtual ~V8TestCallback();
45 45
46 // Functions 46 // Functions
47 virtual bool callbackWithNoParam(); 47 virtual bool callbackWithNoParam();
48 virtual bool callbackWithClass1Param(Class1* class1Param); 48 virtual bool callbackWithTestObjParam(TestObj* class1Param);
49 virtual bool callbackWithClass2Param(Class2* class2Param, const String& strA rg); 49 virtual bool callbackWithTestObjParam(TestObj* class2Param, const String& st rArg);
50 COMPILE_ASSERT(false) virtual int callbackWithNonBoolReturnType(Class3* c lass3Param); 50 COMPILE_ASSERT(false) virtual int callbackWithNonBoolReturnType(TestObj* class3Param);
51 virtual int customCallback(Class5* class5Param, Class6* class6Param); 51 virtual int customCallback(TestObj* testObjParam, TestObj* testObjParam);
52 virtual bool callbackWithStringList(RefPtr<DOMStringList> listParam); 52 virtual bool callbackWithStringList(RefPtr<DOMStringList> listParam);
53 virtual bool callbackWithBoolean(bool boolParam); 53 virtual bool callbackWithBoolean(bool boolParam);
54 54
55 virtual ScriptExecutionContext* scriptExecutionContext() const { return Cont extDestructionObserver::scriptExecutionContext(); } 55 virtual ScriptExecutionContext* scriptExecutionContext() const { return Cont extDestructionObserver::scriptExecutionContext(); }
56 56
57 private: 57 private:
58 V8TestCallback(v8::Handle<v8::Object>, ScriptExecutionContext*); 58 V8TestCallback(v8::Handle<v8::Object>, ScriptExecutionContext*);
59 59
60 ScopedPersistent<v8::Object> m_callback; 60 ScopedPersistent<v8::Object> m_callback;
61 RefPtr<DOMWrapperWorld> m_world; 61 RefPtr<DOMWrapperWorld> m_world;
62 }; 62 };
63 63
64 } 64 }
65 65
66 #endif // V8TestCallback_h 66 #endif // V8TestCallback_h
67 67
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/V8TestActiveDOMObject.cpp ('k') | Source/bindings/tests/results/V8TestCallback.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698