OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/test/base/module_system_test.h" | 5 #include "chrome/test/base/module_system_test.h" |
6 | 6 |
7 #include "base/callback.h" | 7 #include "base/callback.h" |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/string_piece.h" | 9 #include "base/string_piece.h" |
10 #include "chrome/renderer/extensions/native_handler.h" | 10 #include "chrome/renderer/extensions/object_backed_native_handler.h" |
11 #include "ui/base/resource/resource_bundle.h" | 11 #include "ui/base/resource/resource_bundle.h" |
12 | 12 |
13 #include <map> | 13 #include <map> |
14 #include <string> | 14 #include <string> |
15 | 15 |
16 using extensions::ModuleSystem; | 16 using extensions::ModuleSystem; |
17 using extensions::NativeHandler; | 17 using extensions::NativeHandler; |
| 18 using extensions::ObjectBackedNativeHandler; |
18 | 19 |
19 // Native JS functions for doing asserts. | 20 // Native JS functions for doing asserts. |
20 class AssertNatives : public NativeHandler { | 21 class AssertNatives : public ObjectBackedNativeHandler { |
21 public: | 22 public: |
22 AssertNatives() | 23 AssertNatives() |
23 : assertion_made_(false), | 24 : assertion_made_(false), |
24 failed_(false) { | 25 failed_(false) { |
25 RouteFunction("AssertTrue", base::Bind(&AssertNatives::AssertTrue, | 26 RouteFunction("AssertTrue", base::Bind(&AssertNatives::AssertTrue, |
26 base::Unretained(this))); | 27 base::Unretained(this))); |
27 RouteFunction("AssertFalse", base::Bind(&AssertNatives::AssertFalse, | 28 RouteFunction("AssertFalse", base::Bind(&AssertNatives::AssertFalse, |
28 base::Unretained(this))); | 29 base::Unretained(this))); |
29 } | 30 } |
30 | 31 |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 should_assertions_be_made_ = false; | 131 should_assertions_be_made_ = false; |
131 } | 132 } |
132 | 133 |
133 v8::Handle<v8::Object> ModuleSystemTest::CreateGlobal(const std::string& name) { | 134 v8::Handle<v8::Object> ModuleSystemTest::CreateGlobal(const std::string& name) { |
134 v8::HandleScope handle_scope; | 135 v8::HandleScope handle_scope; |
135 v8::Handle<v8::Object> object = v8::Object::New(); | 136 v8::Handle<v8::Object> object = v8::Object::New(); |
136 v8::Context::GetCurrent()->Global()->Set(v8::String::New(name.c_str()), | 137 v8::Context::GetCurrent()->Global()->Set(v8::String::New(name.c_str()), |
137 object); | 138 object); |
138 return handle_scope.Close(object); | 139 return handle_scope.Close(object); |
139 } | 140 } |
OLD | NEW |