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

Unified Diff: content/renderer/webclipboard_impl.h

Issue 17420005: Move the following clipboard files from webkit\glue to webkit\renderer. These files now live in the… (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/scoped_clipboard_writer_glue.cc ('k') | content/renderer/webclipboard_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/webclipboard_impl.h
===================================================================
--- content/renderer/webclipboard_impl.h (revision 207064)
+++ content/renderer/webclipboard_impl.h (working copy)
@@ -1,28 +1,22 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WEBCLIPBOARD_IMPL_H_
-#define WEBCLIPBOARD_IMPL_H_
+#ifndef CONTENT_RENDERER_WEBCLIPBOARD_IMPL_H_
+#define CONTENT_RENDERER_WEBCLIPBOARD_IMPL_H_
#include "base/compiler_specific.h"
+
#include "third_party/WebKit/public/platform/WebClipboard.h"
#include "ui/base/clipboard/clipboard.h"
-#include "webkit/glue/webkit_glue_export.h"
#include <string>
-namespace webkit_glue {
+namespace content {
class ClipboardClient;
-class WEBKIT_GLUE_EXPORT WebClipboardImpl :
- NON_EXPORTED_BASE(public WebKit::WebClipboard) {
+class WebClipboardImpl : public WebKit::WebClipboard {
public:
- static std::string URLToMarkup(const WebKit::WebURL& url,
- const WebKit::WebString& title);
- static std::string URLToImageMarkup(const WebKit::WebURL& url,
- const WebKit::WebString& title);
-
explicit WebClipboardImpl(ClipboardClient* client);
virtual ~WebClipboardImpl();
@@ -62,6 +56,7 @@
ClipboardClient* client_;
};
-} // namespace webkit_glue
+} // namespace content
-#endif // WEBCLIPBOARD_IMPL_H_
+#endif // CONTENT_RENDERER_WEBCLIPBOARD_IMPL_H_
+
« no previous file with comments | « content/renderer/scoped_clipboard_writer_glue.cc ('k') | content/renderer/webclipboard_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698