HomeSort by relevance Sort by last modified time
    Searched refs:CreateTestFunction (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
PluginTest.cpp 46 CreateTestFunction createTestFunction = createTestFunctions()[identifier];
47 if (createTestFunction)
48 return createTestFunction(npp, identifier);
285 void PluginTest::registerCreateTestFunction(const string& identifier, CreateTestFunction createTestFunction)
289 createTestFunctions()[identifier] = createTestFunction;
292 std::map<std::string, PluginTest::CreateTestFunction>& PluginTest::createTestFunctions()
294 static std::map<std::string, CreateTestFunction> testFunctions;
PluginTest.h 266 typedef PluginTest* (*CreateTestFunction)(NPP, const std::string&);
268 static void registerCreateTestFunction(const std::string&, CreateTestFunction);
269 static std::map<std::string, CreateTestFunction>& createTestFunctions();

Completed in 153 milliseconds