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

Side by Side Diff: content/common/common_param_traits.h

Issue 6718027: Refactor: Move app/surface to ui/gfx/surface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Lint. Created 9 years, 9 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
OLDNEW
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 // This file is used to define IPC::ParamTraits<> specializations for a number 5 // This file is used to define IPC::ParamTraits<> specializations for a number
6 // of types so that they can be serialized over IPC. IPC::ParamTraits<> 6 // of types so that they can be serialized over IPC. IPC::ParamTraits<>
7 // specializations for basic types (like int and std::string) and types in the 7 // specializations for basic types (like int and std::string) and types in the
8 // 'base' project can be found in ipc/ipc_message_utils.h. This file contains 8 // 'base' project can be found in ipc/ipc_message_utils.h. This file contains
9 // specializations for types that are used by the content code, and which need 9 // specializations for types that are used by the content code, and which need
10 // manual serialization code. This is usually because they're not structs with 10 // manual serialization code. This is usually because they're not structs with
11 // public members.. 11 // public members..
12 12
13 #ifndef CONTENT_COMMON_COMMON_PARAM_TRAITS_H_ 13 #ifndef CONTENT_COMMON_COMMON_PARAM_TRAITS_H_
14 #define CONTENT_COMMON_COMMON_PARAM_TRAITS_H_ 14 #define CONTENT_COMMON_COMMON_PARAM_TRAITS_H_
15 #pragma once 15 #pragma once
16 16
17 #include "app/surface/transport_dib.h"
18 #include "base/platform_file.h" 17 #include "base/platform_file.h"
19 #include "base/ref_counted.h" 18 #include "base/ref_counted.h"
20 #include "base/string_number_conversions.h" 19 #include "base/string_number_conversions.h"
21 #include "googleurl/src/gurl.h" 20 #include "googleurl/src/gurl.h"
22 #include "ipc/ipc_message_utils.h" 21 #include "ipc/ipc_message_utils.h"
23 #include "net/base/ip_endpoint.h" 22 #include "net/base/ip_endpoint.h"
24 #include "net/url_request/url_request_status.h" 23 #include "net/url_request/url_request_status.h"
25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h"
27 #include "ui/gfx/native_widget_types.h" 26 #include "ui/gfx/native_widget_types.h"
27 #include "ui/gfx/surface/transport_dib.h"
28 #include "webkit/blob/blob_data.h" 28 #include "webkit/blob/blob_data.h"
29 #include "webkit/glue/npruntime_util.h" 29 #include "webkit/glue/npruntime_util.h"
30 #include "webkit/glue/resource_type.h" 30 #include "webkit/glue/resource_type.h"
31 #include "webkit/glue/webcursor.h" 31 #include "webkit/glue/webcursor.h"
32 32
33 namespace gfx { 33 namespace gfx {
34 class Point; 34 class Point;
35 class Rect; 35 class Rect;
36 class Size; 36 class Size;
37 } // namespace gfx 37 } // namespace gfx
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 #endif 380 #endif
381 381
382 template <> 382 template <>
383 struct SimilarTypeTraits<WebKit::WebTextDirection> { 383 struct SimilarTypeTraits<WebKit::WebTextDirection> {
384 typedef int Type; 384 typedef int Type;
385 }; 385 };
386 386
387 } // namespace IPC 387 } // namespace IPC
388 388
389 #endif // CONTENT_COMMON_COMMON_PARAM_TRAITS_H_ 389 #endif // CONTENT_COMMON_COMMON_PARAM_TRAITS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698