Chromium Code Reviews| Index: chrome/common/extensions/docs/server2/file_system.py |
| diff --git a/chrome/common/extensions/docs/server2/file_system.py b/chrome/common/extensions/docs/server2/file_system.py |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..5161e2358bf65b9e25531862fc3b9397991fd18c |
| --- /dev/null |
| +++ b/chrome/common/extensions/docs/server2/file_system.py |
| @@ -0,0 +1,12 @@ |
| +# Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +class FileSystem(object): |
| + class StatInfo(object): |
| + def __init__(self, version): |
| + self.version = version |
| + |
| + def Read(self, paths): pass |
|
not at google - send to devlin
2012/07/18 10:39:15
raise NotImplementedError()
also newline after th
cduvall
2012/07/18 21:26:10
Done.
|
| + def Stat(self, path): |
|
not at google - send to devlin
2012/07/18 10:39:15
documentation on all these. and on the classes.
cduvall
2012/07/18 21:26:10
Done.
|
| + return 0 |
|
not at google - send to devlin
2012/07/18 10:39:15
raise NotImplementedError()?
cduvall
2012/07/18 21:26:10
Done.
|