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

Unified Diff: ui/base/dragdrop/os_exchange_data_provider_chromeos.h

Issue 14736007: Expose os_exchange_data_provider_chromeos to aura builds (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix extraneous gyp line Created 7 years, 8 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
Index: ui/base/dragdrop/os_exchange_data_provider_chromeos.h
diff --git a/ui/base/dragdrop/os_exchange_data_provider_chromeos.h b/ui/base/dragdrop/os_exchange_data_provider_chromeos.h
deleted file mode 100644
index a514664e08d2180333cad9fa8e32e109fb494a86..0000000000000000000000000000000000000000
--- a/ui/base/dragdrop/os_exchange_data_provider_chromeos.h
+++ /dev/null
@@ -1,94 +0,0 @@
-// Copyright (c) 2012 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 UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_PROVIDER_CHROMEOS_H_
-#define UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_PROVIDER_CHROMEOS_H_
-
-#include <map>
-
-#include "base/files/file_path.h"
-#include "base/pickle.h"
-#include "googleurl/src/gurl.h"
-#include "ui/base/dragdrop/os_exchange_data.h"
-#include "ui/gfx/image/image_skia.h"
-#include "ui/gfx/vector2d.h"
-
-namespace ui {
-
-class Clipboard;
-
-// OSExchangeData::Provider implementation for aura on linux.
-class UI_EXPORT OSExchangeDataProviderChromeos
- : public OSExchangeData::Provider {
- public:
- OSExchangeDataProviderChromeos();
- virtual ~OSExchangeDataProviderChromeos();
-
- // Overridden from OSExchangeData::Provider:
- virtual void SetString(const string16& data) OVERRIDE;
- virtual void SetURL(const GURL& url, const string16& title) OVERRIDE;
- virtual void SetFilename(const base::FilePath& path) OVERRIDE;
- virtual void SetFilenames(
- const std::vector<OSExchangeData::FileInfo>& filenames) OVERRIDE;
- virtual void SetPickledData(OSExchangeData::CustomFormat format,
- const Pickle& data) OVERRIDE;
- virtual bool GetString(string16* data) const OVERRIDE;
- virtual bool GetURLAndTitle(GURL* url, string16* title) const OVERRIDE;
- virtual bool GetFilename(base::FilePath* path) const OVERRIDE;
- virtual bool GetFilenames(
- std::vector<OSExchangeData::FileInfo>* filenames) const OVERRIDE;
- virtual bool GetPickledData(OSExchangeData::CustomFormat format,
- Pickle* data) const OVERRIDE;
- virtual bool HasString() const OVERRIDE;
- virtual bool HasURL() const OVERRIDE;
- virtual bool HasFile() const OVERRIDE;
- virtual bool HasCustomFormat(
- OSExchangeData::CustomFormat format) const OVERRIDE;
-
- virtual void SetHtml(const string16& html, const GURL& base_url) OVERRIDE;
- virtual bool GetHtml(string16* html, GURL* base_url) const OVERRIDE;
- virtual bool HasHtml() const OVERRIDE;
- virtual void SetDragImage(const gfx::ImageSkia& image,
- const gfx::Vector2d& cursor_offset) OVERRIDE;
- virtual const gfx::ImageSkia& GetDragImage() const OVERRIDE;
- virtual const gfx::Vector2d& GetDragImageOffset() const OVERRIDE;
-
- private:
- typedef std::map<OSExchangeData::CustomFormat, Pickle> PickleData;
-
- // Returns true if |formats_| contains a string format and the string can be
- // parsed as a URL.
- bool GetPlainTextURL(GURL* url) const;
-
- // Actual formats that have been set. See comment above |known_formats_|
- // for details.
- int formats_;
-
- // String contents.
- string16 string_;
-
- // URL contents.
- GURL url_;
- string16 title_;
-
- // File name.
- std::vector<OSExchangeData::FileInfo> filenames_;
-
- // PICKLED_DATA contents.
- PickleData pickle_data_;
-
- // Drag image and offset data.
- gfx::ImageSkia drag_image_;
- gfx::Vector2d drag_image_offset_;
-
- // For HTML format
- string16 html_;
- GURL base_url_;
-
- DISALLOW_COPY_AND_ASSIGN(OSExchangeDataProviderChromeos);
-};
-
-} // namespace ui
-
-#endif // UI_BASE_DRAGDROP_OS_EXCHANGE_DATA_PROVIDER_CHROMEOS_H_
« no previous file with comments | « ui/base/dragdrop/os_exchange_data_provider_aura.cc ('k') | ui/base/dragdrop/os_exchange_data_provider_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698