Index: content/browser/renderer_host/image_transport_factory.cc |
=================================================================== |
--- content/browser/renderer_host/image_transport_factory.cc (revision 189183) |
+++ content/browser/renderer_host/image_transport_factory.cc (working copy) |
@@ -12,7 +12,6 @@ |
#include "base/memory/ref_counted.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/observer_list.h" |
-#include "base/strings/string_number_conversions.h" |
#include "base/threading/non_thread_safe.h" |
#include "cc/output_surface.h" |
#include "cc/output_surface_client.h" |
@@ -301,16 +300,6 @@ |
surface_id_(surface_id), |
client_(NULL), |
output_surface_proxy_(output_surface_proxy) { |
- CommandLine* command_line = CommandLine::ForCurrentProcess(); |
- if (command_line->HasSwitch(switches::kUIMaxFramesPending)) { |
- std::string string_value = command_line->GetSwitchValueASCII( |
- switches::kUIMaxFramesPending); |
- int int_value; |
- if (base::StringToInt(string_value, &int_value)) |
- capabilities_.max_frames_pending = int_value; |
- else |
- LOG(ERROR) << "Trouble parsing --" << switches::kUIMaxFramesPending; |
- } |
DetachFromThread(); |
} |
Property changes on: content/browser/renderer_host/image_transport_factory.cc |
___________________________________________________________________ |
Deleted: svn:mergeinfo |