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

Unified Diff: content/browser/renderer_host/pepper_message_filter.cc

Issue 7655002: Convert the pp::proxy namespace to the ppapi::proxy namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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 | « no previous file | content/common/pepper_plugin_registry.h » ('j') | ppapi/proxy/callback_tracker.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/pepper_message_filter.cc
diff --git a/content/browser/renderer_host/pepper_message_filter.cc b/content/browser/renderer_host/pepper_message_filter.cc
index e38e376d1a0f5168f158af5402d3b375b786ca23..d43232e3ed2f1867b22d92b8be50bfee45431384 100644
--- a/content/browser/renderer_host/pepper_message_filter.cc
+++ b/content/browser/renderer_host/pepper_message_filter.cc
@@ -239,9 +239,9 @@ void PepperMessageFilter::FlashTCPSocket::Read(int32 bytes_to_read) {
return;
}
- if (bytes_to_read > pp::proxy::kFlashTCPSocketMaxReadSize) {
+ if (bytes_to_read > ppapi::proxy::kFlashTCPSocketMaxReadSize) {
NOTREACHED();
- bytes_to_read = pp::proxy::kFlashTCPSocketMaxReadSize;
+ bytes_to_read = ppapi::proxy::kFlashTCPSocketMaxReadSize;
}
read_buffer_ = new net::IOBuffer(bytes_to_read);
@@ -259,9 +259,9 @@ void PepperMessageFilter::FlashTCPSocket::Write(const std::string& data) {
}
int data_size = data.size();
- if (data_size > pp::proxy::kFlashTCPSocketMaxWriteSize) {
+ if (data_size > ppapi::proxy::kFlashTCPSocketMaxWriteSize) {
NOTREACHED();
- data_size = pp::proxy::kFlashTCPSocketMaxWriteSize;
+ data_size = ppapi::proxy::kFlashTCPSocketMaxWriteSize;
}
write_buffer_ = new net::IOBuffer(data_size);
« no previous file with comments | « no previous file | content/common/pepper_plugin_registry.h » ('j') | ppapi/proxy/callback_tracker.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698