| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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/ipc_message_utils.h" | 5 #include "chrome/common/ipc_message_utils.h" |
| 6 | 6 |
| 7 #include "base/gfx/rect.h" | 7 #include "base/gfx/rect.h" |
| 8 #include "googleurl/src/gurl.h" | 8 #include "googleurl/src/gurl.h" |
| 9 #ifndef EXCLUDE_SKIA_DEPENDENCIES | 9 #ifndef EXCLUDE_SKIA_DEPENDENCIES |
| 10 #include "SkBitmap.h" | 10 #include "third_party/skia/include/core/SkBitmap.h" |
| 11 #endif | 11 #endif |
| 12 #include "webkit/glue/dom_operations.h" | 12 #include "webkit/glue/dom_operations.h" |
| 13 | 13 |
| 14 namespace IPC { | 14 namespace IPC { |
| 15 | 15 |
| 16 #ifndef EXCLUDE_SKIA_DEPENDENCIES | 16 #ifndef EXCLUDE_SKIA_DEPENDENCIES |
| 17 | 17 |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 struct SkBitmap_Data { | 20 struct SkBitmap_Data { |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 } | 215 } |
| 216 return result; | 216 return result; |
| 217 } | 217 } |
| 218 | 218 |
| 219 void ParamTraits<webkit_glue::WebApplicationInfo>::Log( | 219 void ParamTraits<webkit_glue::WebApplicationInfo>::Log( |
| 220 const webkit_glue::WebApplicationInfo& p, std::wstring* l) { | 220 const webkit_glue::WebApplicationInfo& p, std::wstring* l) { |
| 221 l->append(L"<WebApplicationInfo>"); | 221 l->append(L"<WebApplicationInfo>"); |
| 222 } | 222 } |
| 223 | 223 |
| 224 } // namespace IPC | 224 } // namespace IPC |
| OLD | NEW |