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

Side by Side Diff: webkit/plugins/ppapi/ppb_pdf_impl.cc

Issue 6078001: Modify inclusion to use system icu headers when -Duse_system_icu=1 (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 10 years 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 | « no previous file | no next file » | 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 "webkit/plugins/ppapi/ppb_pdf_impl.h" 5 #include "webkit/plugins/ppapi/ppb_pdf_impl.h"
6 6
7 #include "app/resource_bundle.h" 7 #include "app/resource_bundle.h"
8 #include "base/metrics/histogram.h" 8 #include "base/metrics/histogram.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
10 #include "build/build_config.h" 10 #include "build/build_config.h"
11 #include "grit/webkit_resources.h" 11 #include "grit/webkit_resources.h"
12 #include "grit/webkit_strings.h" 12 #include "grit/webkit_strings.h"
13 #include "skia/ext/platform_canvas.h" 13 #include "skia/ext/platform_canvas.h"
14 #include "ppapi/c/pp_resource.h" 14 #include "ppapi/c/pp_resource.h"
15 #include "third_party/skia/include/core/SkBitmap.h" 15 #include "third_party/skia/include/core/SkBitmap.h"
16 #include "third_party/icu/public/i18n/unicode/usearch.h" 16 #include "unicode/usearch.h"
17 #include "webkit/glue/webkit_glue.h" 17 #include "webkit/glue/webkit_glue.h"
18 #include "webkit/plugins/ppapi/plugin_delegate.h" 18 #include "webkit/plugins/ppapi/plugin_delegate.h"
19 #include "webkit/plugins/ppapi/plugin_module.h" 19 #include "webkit/plugins/ppapi/plugin_module.h"
20 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" 20 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h"
21 #include "webkit/plugins/ppapi/ppb_image_data_impl.h" 21 #include "webkit/plugins/ppapi/ppb_image_data_impl.h"
22 #include "webkit/plugins/ppapi/ppb_pdf.h" 22 #include "webkit/plugins/ppapi/ppb_pdf.h"
23 #include "webkit/plugins/ppapi/var.h" 23 #include "webkit/plugins/ppapi/var.h"
24 24
25 namespace webkit { 25 namespace webkit {
26 namespace ppapi { 26 namespace ppapi {
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 bool rv = webkit_glue::GetFontTable( 293 bool rv = webkit_glue::GetFontTable(
294 fd_, table, static_cast<uint8_t*>(output), &temp_size); 294 fd_, table, static_cast<uint8_t*>(output), &temp_size);
295 *output_length = static_cast<uint32_t>(temp_size); 295 *output_length = static_cast<uint32_t>(temp_size);
296 return rv; 296 return rv;
297 } 297 }
298 #endif 298 #endif
299 299
300 } // namespace ppapi 300 } // namespace ppapi
301 } // namespace webkit 301 } // namespace webkit
302 302
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698