OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/common/common_param_traits.h" | 5 #include "chrome/common/common_param_traits.h" |
6 | 6 |
7 #include "base/time.h" | 7 #include "base/time.h" |
8 #include "chrome/common/chrome_constants.h" | 8 #include "chrome/common/chrome_constants.h" |
9 #include "chrome/common/content_settings.h" | 9 #include "chrome/common/content_settings.h" |
10 #include "chrome/common/geoposition.h" | |
11 #include "chrome/common/thumbnail_score.h" | 10 #include "chrome/common/thumbnail_score.h" |
12 #include "chrome/common/web_apps.h" | 11 #include "chrome/common/web_apps.h" |
13 #include "content/common/common_param_traits.h" | 12 #include "content/common/common_param_traits.h" |
| 13 #include "content/common/geoposition.h" |
14 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
15 #include "printing/backend/print_backend.h" | 15 #include "printing/backend/print_backend.h" |
16 #include "printing/native_metafile.h" | 16 #include "printing/native_metafile.h" |
17 #include "printing/page_range.h" | 17 #include "printing/page_range.h" |
18 | 18 |
19 #ifndef EXCLUDE_SKIA_DEPENDENCIES | 19 #ifndef EXCLUDE_SKIA_DEPENDENCIES |
20 #include "third_party/skia/include/core/SkBitmap.h" | 20 #include "third_party/skia/include/core/SkBitmap.h" |
21 #endif | 21 #endif |
22 #include "webkit/glue/password_form.h" | 22 #include "webkit/glue/password_form.h" |
23 | 23 |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 l->append(","); | 400 l->append(","); |
401 LogParam(p.caps_mime_type, l); | 401 LogParam(p.caps_mime_type, l); |
402 l->append(","); | 402 l->append(","); |
403 LogParam(p.printer_defaults, l); | 403 LogParam(p.printer_defaults, l); |
404 l->append(","); | 404 l->append(","); |
405 LogParam(p.defaults_mime_type, l); | 405 LogParam(p.defaults_mime_type, l); |
406 l->append(")"); | 406 l->append(")"); |
407 } | 407 } |
408 | 408 |
409 } // namespace IPC | 409 } // namespace IPC |
OLD | NEW |