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

Unified Diff: media/base/android/media_drm_bridge.cc

Issue 89243003: Move EmptyString, kWhitespace and the BOM to base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
« no previous file with comments | « gpu/command_buffer/service/gpu_tracer.cc ('k') | net/ftp/ftp_network_transaction.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/android/media_drm_bridge.cc
diff --git a/media/base/android/media_drm_bridge.cc b/media/base/android/media_drm_bridge.cc
index 8b5d59e4136b3badb15d61afba8b365e269e77eb..6a72e179965aafee86303617baed65aaf476bd01 100644
--- a/media/base/android/media_drm_bridge.cc
+++ b/media/base/android/media_drm_bridge.cc
@@ -392,7 +392,7 @@ uint32_t MediaDrmBridge::DetermineReferenceId(const std::string& session_id) {
const std::string& MediaDrmBridge::LookupSessionId(uint32 reference_id) {
// Session may not exist if error happens during GenerateKeyRequest().
SessionMap::iterator it = session_map_.find(reference_id);
- return (it != session_map_.end()) ? it->second : EmptyString();
+ return (it != session_map_.end()) ? it->second : base::EmptyString();
}
} // namespace media
« no previous file with comments | « gpu/command_buffer/service/gpu_tracer.cc ('k') | net/ftp/ftp_network_transaction.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698