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

Side by Side Diff: content/common/cursors/webcursor_android.cc

Issue 1149113006: Move Pickle to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « content/common/cursors/webcursor.h ('k') | content/common/cursors/webcursor_aurawin.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/common/cursors/webcursor.h" 5 #include "content/common/cursors/webcursor.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "third_party/WebKit/public/platform/WebCursorInfo.h" 8 #include "third_party/WebKit/public/platform/WebCursorInfo.h"
9 9
10 namespace content { 10 namespace content {
11 11
12 void WebCursor::InitPlatformData() { 12 void WebCursor::InitPlatformData() {
13 } 13 }
14 14
15 bool WebCursor::SerializePlatformData(Pickle* pickle) const { 15 bool WebCursor::SerializePlatformData(base::Pickle* pickle) const {
16 return true; 16 return true;
17 } 17 }
18 18
19 bool WebCursor::DeserializePlatformData(PickleIterator* iter) { 19 bool WebCursor::DeserializePlatformData(base::PickleIterator* iter) {
20 return true; 20 return true;
21 } 21 }
22 22
23 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { 23 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
24 return true; 24 return true;
25 } 25 }
26 26
27 void WebCursor::CleanupPlatformData() { 27 void WebCursor::CleanupPlatformData() {
28 } 28 }
29 29
30 void WebCursor::CopyPlatformData(const WebCursor& other) { 30 void WebCursor::CopyPlatformData(const WebCursor& other) {
31 } 31 }
32 32
33 } // namespace content 33 } // namespace content
OLDNEW
« no previous file with comments | « content/common/cursors/webcursor.h ('k') | content/common/cursors/webcursor_aurawin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698