Chromium Code Reviews| 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 |