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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « app/os_exchange_data.cc ('k') | app/os_exchange_data_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Name: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "app/os_exchange_data.h"
6
7 #include "base/logging.h"
8
9 OSExchangeData::OSExchangeData() {
10 }
11
12 OSExchangeData::~OSExchangeData() {
13 }
14
15 void OSExchangeData::SetString(const std::wstring& data) {
16 NOTIMPLEMENTED();
17 }
18
19 void OSExchangeData::SetURL(const GURL& url, const std::wstring& title) {
20 NOTIMPLEMENTED();
21 }
22
23 void OSExchangeData::SetFilename(const std::wstring& full_path) {
24 NOTIMPLEMENTED();
25 }
26
27 void OSExchangeData::SetFileContents(const std::wstring& filename,
28 const std::string& file_contents) {
29 NOTIMPLEMENTED();
30 }
31
32 void OSExchangeData::SetHtml(const std::wstring& html, const GURL& base_url) {
33 NOTIMPLEMENTED();
34 }
35
36 bool OSExchangeData::GetString(std::wstring* data) const {
37 NOTIMPLEMENTED();
38 return false;
39 }
40
41 bool OSExchangeData::GetURLAndTitle(GURL* url, std::wstring* title) const {
42 NOTIMPLEMENTED();
43 return false;
44 }
45
46 bool OSExchangeData::GetFilename(std::wstring* full_path) const {
47 NOTIMPLEMENTED();
48 return false;
49 }
50
51 bool OSExchangeData::GetFileContents(std::wstring* filename,
52 std::string* file_contents) const {
53 NOTIMPLEMENTED();
54 return false;
55 }
56
57 bool OSExchangeData::GetHtml(std::wstring* html, GURL* base_url) const {
58 NOTIMPLEMENTED();
59 return false;
60 }
61
62 bool OSExchangeData::HasString() const {
63 NOTIMPLEMENTED();
64 return false;
65 }
66
67 bool OSExchangeData::HasURL() const {
68 NOTIMPLEMENTED();
69 return false;
70 }
71
72 bool OSExchangeData::HasFile() const {
73 NOTIMPLEMENTED();
74 return false;
75 }
OLDNEW
« 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