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

Unified Diff: webkit/glue/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 | « webkit/glue/scoped_clipboard_writer_glue.cc ('k') | webkit/glue/webclipboard_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webclipboard_impl.h
===================================================================
--- webkit/glue/webclipboard_impl.h (revision 207553)
+++ webkit/glue/webclipboard_impl.h (working copy)
@@ -1,67 +0,0 @@
-// Copyright (c) 2011 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_
-
-#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 {
-class ClipboardClient;
-
-class WEBKIT_GLUE_EXPORT WebClipboardImpl :
- NON_EXPORTED_BASE(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();
-
- // WebClipboard methods:
- virtual uint64 getSequenceNumber();
- virtual uint64 sequenceNumber(Buffer buffer);
- virtual bool isFormatAvailable(Format format, Buffer buffer);
- virtual WebKit::WebVector<WebKit::WebString> readAvailableTypes(
- Buffer buffer, bool* contains_filenames);
- virtual WebKit::WebString readPlainText(Buffer buffer);
- virtual WebKit::WebString readHTML(
- Buffer buffer,
- WebKit::WebURL* source_url,
- unsigned* fragment_start,
- unsigned* fragment_end);
- virtual WebKit::WebData readImage(Buffer buffer);
- virtual WebKit::WebString readCustomData(
- Buffer buffer, const WebKit::WebString& type);
- virtual void writeHTML(
- const WebKit::WebString& html_text,
- const WebKit::WebURL& source_url,
- const WebKit::WebString& plain_text,
- bool write_smart_paste);
- virtual void writePlainText(const WebKit::WebString& plain_text);
- virtual void writeURL(
- const WebKit::WebURL& url,
- const WebKit::WebString& title);
- virtual void writeImage(
- const WebKit::WebImage& image,
- const WebKit::WebURL& source_url,
- const WebKit::WebString& title);
- virtual void writeDataObject(const WebKit::WebDragData& data);
-
- private:
- bool ConvertBufferType(Buffer, ui::Clipboard::Buffer*);
- ClipboardClient* client_;
-};
-
-} // namespace webkit_glue
-
-#endif // WEBCLIPBOARD_IMPL_H_
« no previous file with comments | « webkit/glue/scoped_clipboard_writer_glue.cc ('k') | webkit/glue/webclipboard_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698