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

Side by Side Diff: webkit/glue/glue_serialize_deprecated.cc

Issue 15995038: Use a direct include of utf_string_conversions.h in google_apis/, gpu/, ipc/, media/, ppapi/, print… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: better Created 7 years, 6 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/glue/glue_serialize_deprecated.h" 5 #include "webkit/glue/glue_serialize_deprecated.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/pickle.h" 9 #include "base/pickle.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/strings/utf_string_conversions.h"
11 #include "googleurl/src/gurl.h" 11 #include "googleurl/src/gurl.h"
12 #include "third_party/WebKit/public/platform/WebData.h" 12 #include "third_party/WebKit/public/platform/WebData.h"
13 #include "third_party/WebKit/public/platform/WebHTTPBody.h" 13 #include "third_party/WebKit/public/platform/WebHTTPBody.h"
14 #include "third_party/WebKit/public/platform/WebPoint.h" 14 #include "third_party/WebKit/public/platform/WebPoint.h"
15 #include "third_party/WebKit/public/platform/WebString.h" 15 #include "third_party/WebKit/public/platform/WebString.h"
16 #include "third_party/WebKit/public/platform/WebURL.h" 16 #include "third_party/WebKit/public/platform/WebURL.h"
17 #include "third_party/WebKit/public/platform/WebVector.h" 17 #include "third_party/WebKit/public/platform/WebVector.h"
18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHistoryItem.h" 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebHistoryItem.h"
19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSerializedScriptVa lue.h" 19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSerializedScriptVa lue.h"
20 #include "ui/gfx/screen.h" 20 #include "ui/gfx/screen.h"
(...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after
661 // serialization of the given URL with a dummy version number of -1. This 661 // serialization of the given URL with a dummy version number of -1. This
662 // will be interpreted by ReadHistoryItem as a request to create a default 662 // will be interpreted by ReadHistoryItem as a request to create a default
663 // WebHistoryItem. 663 // WebHistoryItem.
664 SerializeObject obj; 664 SerializeObject obj;
665 WriteInteger(-1, &obj); 665 WriteInteger(-1, &obj);
666 WriteGURL(url, &obj); 666 WriteGURL(url, &obj);
667 return obj.GetAsString(); 667 return obj.GetAsString();
668 } 668 }
669 669
670 } // namespace webkit_glue 670 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/ftp_directory_listing_response_delegate.cc ('k') | webkit/glue/simple_webmimeregistry_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698