Index: chrome/common/extensions/chrome_extensions_client.cc |
diff --git a/chrome/common/extensions/chrome_extensions_client.cc b/chrome/common/extensions/chrome_extensions_client.cc |
index 686db97323b8a551154e78fc1c65b8d6a616e189..5494871f2b7a1b88e8409a95cae9ef619b39dce2 100644 |
--- a/chrome/common/extensions/chrome_extensions_client.cc |
+++ b/chrome/common/extensions/chrome_extensions_client.cc |
@@ -288,17 +288,17 @@ bool ChromeExtensionsClient::IsScriptableURL( |
bool ChromeExtensionsClient::IsAPISchemaGenerated( |
const std::string& name) const { |
// Test from most common to least common. |
- return api::GeneratedSchemas::IsGenerated(name) || |
- core_api::GeneratedSchemas::IsGenerated(name); |
+ return api::ChromeGeneratedSchemas::IsGenerated(name) || |
+ api::GeneratedSchemas::IsGenerated(name); |
} |
base::StringPiece ChromeExtensionsClient::GetAPISchema( |
const std::string& name) const { |
// Test from most common to least common. |
- if (api::GeneratedSchemas::IsGenerated(name)) |
- return api::GeneratedSchemas::Get(name); |
+ if (api::ChromeGeneratedSchemas::IsGenerated(name)) |
+ return api::ChromeGeneratedSchemas::Get(name); |
- return core_api::GeneratedSchemas::Get(name); |
+ return api::GeneratedSchemas::Get(name); |
} |
void ChromeExtensionsClient::RegisterAPISchemaResources( |