blob: b5994701559e6b29735816e8fdca051e2217d889 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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;
}
|