OLD | NEW |
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 Loading... |
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 |
OLD | NEW |