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

Side by Side Diff: chrome/common/extensions/docs/server2/file_system.py

Issue 10704252: Extensions Docs Server: Internal file system (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tests Created 8 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 class FileSystem(object):
6 class StatInfo(object):
7 def __init__(self, version):
8 self.version = version
9
10 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.
11 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.
12 return 0
not at google - send to devlin 2012/07/18 10:39:15 raise NotImplementedError()?
cduvall 2012/07/18 21:26:10 Done.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698