| Index: chrome/common/extensions/docs/server2/api_data_source.py
|
| diff --git a/chrome/common/extensions/docs/server2/api_data_source.py b/chrome/common/extensions/docs/server2/api_data_source.py
|
| index df8ceae182ab1b70c3493f00321b12281a22f815..e8db941b3ff73f9b6842f1341572dbc2874da2d4 100644
|
| --- a/chrome/common/extensions/docs/server2/api_data_source.py
|
| +++ b/chrome/common/extensions/docs/server2/api_data_source.py
|
| @@ -39,10 +39,9 @@ class APIDataSource(object):
|
| json_path = unix_name + '.json'
|
| idl_path = unix_name + '.idl'
|
| try:
|
| - return self._json_cache.get(self._base_path + '/' + json_path)
|
| + return self._json_cache.getFromFile(self._base_path + '/' + json_path)
|
| except:
|
| try:
|
| - return self._idl_cache.get(self._base_path + '/' + idl_path)
|
| + return self._idl_cache.getFromFile(self._base_path + '/' + idl_path)
|
| except:
|
| - pass
|
| - return None
|
| + return None
|
|
|