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

Side by Side Diff: content/common/cursors/webcursor_mac.mm

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_aurax11.cc ('k') | content/common/cursors/webcursor_ozone.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 #import <AppKit/AppKit.h> 7 #import <AppKit/AppKit.h>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/mac/mac_util.h" 10 #include "base/mac/mac_util.h"
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 } 358 }
359 } 359 }
360 360
361 InitFromCursorInfo(cursor_info); 361 InitFromCursorInfo(cursor_info);
362 } 362 }
363 363
364 void WebCursor::InitPlatformData() { 364 void WebCursor::InitPlatformData() {
365 return; 365 return;
366 } 366 }
367 367
368 bool WebCursor::SerializePlatformData(Pickle* pickle) const { 368 bool WebCursor::SerializePlatformData(base::Pickle* pickle) const {
369 return true; 369 return true;
370 } 370 }
371 371
372 bool WebCursor::DeserializePlatformData(PickleIterator* iter) { 372 bool WebCursor::DeserializePlatformData(base::PickleIterator* iter) {
373 return true; 373 return true;
374 } 374 }
375 375
376 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { 376 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
377 return true; 377 return true;
378 } 378 }
379 379
380 void WebCursor::CleanupPlatformData() { 380 void WebCursor::CleanupPlatformData() {
381 return; 381 return;
382 } 382 }
383 383
384 void WebCursor::CopyPlatformData(const WebCursor& other) { 384 void WebCursor::CopyPlatformData(const WebCursor& other) {
385 return; 385 return;
386 } 386 }
387 387
388 } // namespace content 388 } // namespace content
OLDNEW
« no previous file with comments | « content/common/cursors/webcursor_aurax11.cc ('k') | content/common/cursors/webcursor_ozone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698