Index: chrome/browser/chromeos/gdata/gdata_db.h |
diff --git a/chrome/browser/chromeos/gdata/gdata_db.h b/chrome/browser/chromeos/gdata/gdata_db.h |
index 67d1e58115fae00a0f9fa8d881dee72949560e80..91befd5edfc41b7301a20c3209c9dff955fd2fd6 100644 |
--- a/chrome/browser/chromeos/gdata/gdata_db.h |
+++ b/chrome/browser/chromeos/gdata/gdata_db.h |
@@ -47,6 +47,11 @@ class GDataDB { |
// Will not return NULL. |
virtual scoped_ptr<GDataDBIter> CreateIterator(const FilePath& path) = 0; |
+ // Puts |raw_value| keyed with |resource_id| to the database. |
+ // Used for testing (ex. injecting incompatibe proto). |
achuithb
2012/07/10 18:42:55
nit: spelling incompatible
satorux1
2012/07/10 20:11:24
Done.
|
+ virtual Status PutRawForTesting(const std::string& resource_id, |
+ const std::string& raw_value) = 0; |
+ |
protected: |
GDataDB() {} |
}; |