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

Unified Diff: chrome/renderer/extensions/module_system_unittest.cc

Issue 11571014: Lazy load chrome.* APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments/TODOs Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/renderer/extensions/module_system_unittest.cc
diff --git a/chrome/renderer/extensions/module_system_unittest.cc b/chrome/renderer/extensions/module_system_unittest.cc
index da233b8ffcb11cb7730fb3477364d3010dbe4e02..e4e7b7a9606a34470204c0acd9a43d88c81b377a 100644
--- a/chrome/renderer/extensions/module_system_unittest.cc
+++ b/chrome/renderer/extensions/module_system_unittest.cc
@@ -8,8 +8,9 @@
using extensions::ModuleSystem;
using extensions::NativeHandler;
+using extensions::ObjectBackedNativeHandler;
-class CounterNatives : public NativeHandler {
+class CounterNatives : public ObjectBackedNativeHandler {
public:
CounterNatives() : counter_(0) {
RouteFunction("Get", base::Bind(&CounterNatives::Get,

Powered by Google App Engine
This is Rietveld 408576698