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

Side by Side Diff: webkit/common/webdropdata.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
« no previous file with comments | « webkit/common/fileapi/file_system_util.cc ('k') | webkit/common/webpreferences.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/common/webdropdata.h" 5 #include "webkit/common/webdropdata.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/string_util.h" 10 #include "base/string_util.h"
11 #include "base/utf_string_conversions.h" 11 #include "base/strings/utf_string_conversions.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/WebDragData.h" 13 #include "third_party/WebKit/public/platform/WebDragData.h"
14 #include "third_party/WebKit/public/platform/WebString.h" 14 #include "third_party/WebKit/public/platform/WebString.h"
15 #include "third_party/WebKit/public/platform/WebURL.h" 15 #include "third_party/WebKit/public/platform/WebURL.h"
16 #include "third_party/WebKit/public/platform/WebVector.h" 16 #include "third_party/WebKit/public/platform/WebVector.h"
17 #include "ui/base/clipboard/clipboard.h" 17 #include "ui/base/clipboard/clipboard.h"
18 18
19 using WebKit::WebData; 19 using WebKit::WebData;
20 using WebKit::WebDragData; 20 using WebKit::WebDragData;
21 using WebKit::WebString; 21 using WebKit::WebString;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 } 75 }
76 76
77 WebDropData::WebDropData() 77 WebDropData::WebDropData()
78 : referrer_policy(WebKit::WebReferrerPolicyDefault), 78 : referrer_policy(WebKit::WebReferrerPolicyDefault),
79 text(NullableString16(true)), 79 text(NullableString16(true)),
80 html(NullableString16(true)) { 80 html(NullableString16(true)) {
81 } 81 }
82 82
83 WebDropData::~WebDropData() { 83 WebDropData::~WebDropData() {
84 } 84 }
OLDNEW
« no previous file with comments | « webkit/common/fileapi/file_system_util.cc ('k') | webkit/common/webpreferences.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698