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

Side by Side Diff: chrome/renderer/print_web_view_helper_win.cc

Issue 3066014: Cleanup: Remove unneeded headers from app/ (part 2) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/plugin/plugin_main.cc ('k') | chrome/renderer/renderer_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/renderer/print_web_view_helper.h" 5 #include "chrome/renderer/print_web_view_helper.h"
6 6
7 #include "app/l10n_util.h"
8 #include "base/logging.h" 7 #include "base/logging.h"
9 #include "chrome/common/render_messages.h" 8 #include "chrome/common/render_messages.h"
10 #include "chrome/renderer/render_view.h" 9 #include "chrome/renderer/render_view.h"
11 #include "gfx/size.h" 10 #include "gfx/size.h"
12 #include "grit/generated_resources.h" 11 #include "grit/generated_resources.h"
13 #include "printing/native_metafile.h" 12 #include "printing/native_metafile.h"
14 #include "printing/units.h" 13 #include "printing/units.h"
15 #include "skia/ext/vector_canvas.h" 14 #include "skia/ext/vector_canvas.h"
16 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" 15 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h"
17 16
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 NOTREACHED() << "Buffer too large: " << buf_size; 158 NOTREACHED() << "Buffer too large: " << buf_size;
160 } 159 }
161 metafile.CloseEmf(); 160 metafile.CloseEmf();
162 if (Send(new ViewHostMsg_DuplicateSection( 161 if (Send(new ViewHostMsg_DuplicateSection(
163 routing_id(), 162 routing_id(),
164 page_params.metafile_data_handle, 163 page_params.metafile_data_handle,
165 &page_params.metafile_data_handle))) { 164 &page_params.metafile_data_handle))) {
166 Send(new ViewHostMsg_DidPrintPage(routing_id(), page_params)); 165 Send(new ViewHostMsg_DidPrintPage(routing_id(), page_params));
167 } 166 }
168 } 167 }
OLDNEW
« no previous file with comments | « chrome/plugin/plugin_main.cc ('k') | chrome/renderer/renderer_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698