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

Side by Side Diff: content/renderer/renderer_clipboard_client.cc

Issue 16756003: Use a direct include of strings headers in content/renderer and content/shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 // This file provides the embedder's side of random webkit glue functions. 5 // This file provides the embedder's side of random webkit glue functions.
6 6
7 #include "content/renderer/renderer_clipboard_client.h" 7 #include "content/renderer/renderer_clipboard_client.h"
8 8
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "base/string16.h" 10 #include "base/strings/string16.h"
11 #include "content/common/clipboard_messages.h" 11 #include "content/common/clipboard_messages.h"
12 #include "content/public/renderer/content_renderer_client.h" 12 #include "content/public/renderer/content_renderer_client.h"
13 #include "content/renderer/render_thread_impl.h" 13 #include "content/renderer/render_thread_impl.h"
14 #include "ui/base/clipboard/clipboard.h" 14 #include "ui/base/clipboard/clipboard.h"
15 #include "ui/gfx/size.h" 15 #include "ui/gfx/size.h"
16 #include "webkit/glue/scoped_clipboard_writer_glue.h" 16 #include "webkit/glue/scoped_clipboard_writer_glue.h"
17 17
18 namespace content { 18 namespace content {
19 19
20 namespace { 20 namespace {
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 RenderThreadImpl::current()->Send( 183 RenderThreadImpl::current()->Send(
184 new ClipboardHostMsg_ReadData(format, data)); 184 new ClipboardHostMsg_ReadData(format, data));
185 } 185 }
186 186
187 webkit_glue::ClipboardClient::WriteContext* 187 webkit_glue::ClipboardClient::WriteContext*
188 RendererClipboardClient::CreateWriteContext() { 188 RendererClipboardClient::CreateWriteContext() {
189 return new RendererClipboardWriteContext; 189 return new RendererClipboardWriteContext;
190 } 190 }
191 191
192 } // namespace content 192 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl_params.h ('k') | content/renderer/renderer_date_time_picker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698