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

Unified Diff: app/os_exchange_data_gtk.cc

Issue 113321: Stubs out OSExchangeData for views on gtk. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 | « app/os_exchange_data.cc ('k') | app/os_exchange_data_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/os_exchange_data_gtk.cc
===================================================================
--- app/os_exchange_data_gtk.cc (revision 0)
+++ app/os_exchange_data_gtk.cc (revision 0)
@@ -0,0 +1,75 @@
+// Copyright (c) 2009 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.
+
+#include "app/os_exchange_data.h"
+
+#include "base/logging.h"
+
+OSExchangeData::OSExchangeData() {
+}
+
+OSExchangeData::~OSExchangeData() {
+}
+
+void OSExchangeData::SetString(const std::wstring& data) {
+ NOTIMPLEMENTED();
+}
+
+void OSExchangeData::SetURL(const GURL& url, const std::wstring& title) {
+ NOTIMPLEMENTED();
+}
+
+void OSExchangeData::SetFilename(const std::wstring& full_path) {
+ NOTIMPLEMENTED();
+}
+
+void OSExchangeData::SetFileContents(const std::wstring& filename,
+ const std::string& file_contents) {
+ NOTIMPLEMENTED();
+}
+
+void OSExchangeData::SetHtml(const std::wstring& html, const GURL& base_url) {
+ NOTIMPLEMENTED();
+}
+
+bool OSExchangeData::GetString(std::wstring* data) const {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+bool OSExchangeData::GetURLAndTitle(GURL* url, std::wstring* title) const {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+bool OSExchangeData::GetFilename(std::wstring* full_path) const {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+bool OSExchangeData::GetFileContents(std::wstring* filename,
+ std::string* file_contents) const {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+bool OSExchangeData::GetHtml(std::wstring* html, GURL* base_url) const {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+bool OSExchangeData::HasString() const {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+bool OSExchangeData::HasURL() const {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+bool OSExchangeData::HasFile() const {
+ NOTIMPLEMENTED();
+ return false;
+}
Property changes on: app/os_exchange_data_gtk.cc
___________________________________________________________________
Name: svn:eol-style
+ LF
« no previous file with comments | « app/os_exchange_data.cc ('k') | app/os_exchange_data_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698