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/renderer/render_view_impl.cc

Issue 11740038: Cleanup: Fix some lint errors in content/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 12 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
Index: content/renderer/render_view_impl.cc
===================================================================
--- content/renderer/render_view_impl.cc (revision 175088)
+++ content/renderer/render_view_impl.cc (working copy)
@@ -1915,8 +1915,9 @@
// 3d context.
return new CompositorOutputSurface(routing_id(), NULL,
new CompositorSoftwareOutputDeviceGLAdapter(context));
- } else
+ } else {
return new CompositorOutputSurface(routing_id(), context, NULL);
+ }
}
void RenderViewImpl::didAddMessageToConsole(
@@ -4269,7 +4270,7 @@
params.target_process_id = target_process_id_;
params.target_routing_id = target_routing_id_;
- std::map<int,int>::iterator it = active_frame_id_map_.find(
+ std::map<int, int>::iterator it = active_frame_id_map_.find(
targetFrame->identifier());
if (it != active_frame_id_map_.end()) {
params.target_frame_id = it->second;
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('k') | content/renderer/renderer_webkitplatformsupport_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698