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

Unified Diff: media/cast/logging/log_serializer.cc

Issue 145873006: ui/base/resource: Roll our own version of ReadBigEndian() function. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cloud_print/gcp20/prototype/dns_sd_server.cc ('k') | media/cast/logging/logging_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/cast/logging/log_serializer.cc
diff --git a/media/cast/logging/log_serializer.cc b/media/cast/logging/log_serializer.cc
index bc6a1aecb5cfde3720a7532e9d5e608e1d057e31..e4678142476da137ac8ec533c320af89fe2af25b 100644
--- a/media/cast/logging/log_serializer.cc
+++ b/media/cast/logging/log_serializer.cc
@@ -4,7 +4,7 @@
#include "media/cast/logging/log_serializer.h"
-#include "net/base/big_endian.h"
+#include "base/big_endian.h"
namespace media {
namespace cast {
@@ -42,7 +42,7 @@ bool LogSerializer::SerializeEventsForStream(
if (remaining_space <= 0)
return false;
- net::BigEndianWriter writer(&(*serialized_log_so_far_)[index_so_far_],
+ base::BigEndianWriter writer(&(*serialized_log_so_far_)[index_so_far_],
remaining_space);
// Write stream ID.
« no previous file with comments | « cloud_print/gcp20/prototype/dns_sd_server.cc ('k') | media/cast/logging/logging_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698