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

Side by Side Diff: webkit/glue/webcursor_mac.mm

Issue 9447084: Refactor Pickle Read methods to use higher performance PickleIterator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: compile (racing with incoming CLs) Created 8 years, 9 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 | « webkit/glue/webcursor_gtk.cc ('k') | webkit/glue/webcursor_unittest.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 "webkit/glue/webcursor.h" 5 #include "webkit/glue/webcursor.h"
6 6
7 #import <AppKit/AppKit.h> 7 #import <AppKit/AppKit.h>
8 #include <Carbon/Carbon.h> 8 #include <Carbon/Carbon.h>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 #endif // !WEBKIT_USING_SKIA 486 #endif // !WEBKIT_USING_SKIA
487 487
488 void WebCursor::InitPlatformData() { 488 void WebCursor::InitPlatformData() {
489 return; 489 return;
490 } 490 }
491 491
492 bool WebCursor::SerializePlatformData(Pickle* pickle) const { 492 bool WebCursor::SerializePlatformData(Pickle* pickle) const {
493 return true; 493 return true;
494 } 494 }
495 495
496 bool WebCursor::DeserializePlatformData(const Pickle* pickle, void** iter) { 496 bool WebCursor::DeserializePlatformData(PickleIterator* iter) {
497 return true; 497 return true;
498 } 498 }
499 499
500 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { 500 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
501 return true; 501 return true;
502 } 502 }
503 503
504 void WebCursor::CleanupPlatformData() { 504 void WebCursor::CleanupPlatformData() {
505 return; 505 return;
506 } 506 }
507 507
508 void WebCursor::CopyPlatformData(const WebCursor& other) { 508 void WebCursor::CopyPlatformData(const WebCursor& other) {
509 return; 509 return;
510 } 510 }
OLDNEW
« no previous file with comments | « webkit/glue/webcursor_gtk.cc ('k') | webkit/glue/webcursor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698