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

Unified Diff: rlz/lib/rlz_lib.h

Issue 11365107: [cros] RlzValueStore implementation for ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Revert test helpers Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: rlz/lib/rlz_lib.h
diff --git a/rlz/lib/rlz_lib.h b/rlz/lib/rlz_lib.h
index 1f8be5ca2d54966ea258d4742abfdc1a05a2464d..b33f40a6d0b9fa55212490111ed271650b7c9d24 100644
--- a/rlz/lib/rlz_lib.h
+++ b/rlz/lib/rlz_lib.h
@@ -45,6 +45,9 @@
#endif
#if defined(RLZ_NETWORK_IMPLEMENTATION_CHROME_NET)
+namespace base {
+class MessageLoopProxy;
+} // namespace base
Roger Tawa OOO till Jul 10th 2012/11/06 20:55:11 ifdef this for chromeos?
Ivan Korotkov 2012/11/07 10:49:12 Oops, right.
namespace net {
class URLRequestContextGetter;
} // namespace net
@@ -71,6 +74,11 @@ const size_t kMaxPingResponseLength = 0x4000; // 16K
bool RLZ_LIB_API SetURLRequestContext(net::URLRequestContextGetter* context);
#endif
+#if defined(OS_CHROMEOS)
+// Set that MessageLoopProxy used by RLZ store to run I/O tasks on.
Roger Tawa OOO till Jul 10th 2012/11/06 20:55:11 that --> the ?
Ivan Korotkov 2012/11/07 10:49:12 Done.
+void RLZ_LIB_API SetIOTaskRunner(base::MessageLoopProxy* io_task_runner);
Roger Tawa OOO till Jul 10th 2012/11/06 20:55:11 Add a comment that this should be called before an
Ivan Korotkov 2012/11/07 10:49:12 Done.
+#endif
+
// RLZ storage functions.
// Get all the events reported by this product as a CGI string to append to

Powered by Google App Engine
This is Rietveld 408576698