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

Unified Diff: ui/base/dragdrop/os_exchange_data.cc

Issue 1154283003: Change most uses of Pickle to base::Pickle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « ui/base/clipboard/scoped_clipboard_writer.cc ('k') | ui/base/dragdrop/os_exchange_data_provider_aura.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/dragdrop/os_exchange_data.cc
diff --git a/ui/base/dragdrop/os_exchange_data.cc b/ui/base/dragdrop/os_exchange_data.cc
index c236a46730549b08c9e62793b5754df0b970a4bd..69d13edd4a28c31d8717d41bd219699387544296 100644
--- a/ui/base/dragdrop/os_exchange_data.cc
+++ b/ui/base/dragdrop/os_exchange_data.cc
@@ -53,7 +53,7 @@ void OSExchangeData::SetFilenames(
}
void OSExchangeData::SetPickledData(const CustomFormat& format,
- const Pickle& data) {
+ const base::Pickle& data) {
provider_->SetPickledData(format, data);
}
@@ -77,7 +77,7 @@ bool OSExchangeData::GetFilenames(
}
bool OSExchangeData::GetPickledData(const CustomFormat& format,
- Pickle* data) const {
+ base::Pickle* data) const {
return provider_->GetPickledData(format, data);
}
« no previous file with comments | « ui/base/clipboard/scoped_clipboard_writer.cc ('k') | ui/base/dragdrop/os_exchange_data_provider_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698