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

Side by Side Diff: webkit/common/cursors/webcursor_null.cc

Issue 15971005: Move the WebCursor sources from webkit/glue to webkit/common/cursors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « webkit/common/cursors/webcursor_mac.mm ('k') | webkit/common/cursors/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/common/cursors/webcursor.h"
6 6
7 const ui::PlatformCursor WebCursor::GetPlatformCursor() { 7 const ui::PlatformCursor WebCursor::GetPlatformCursor() {
8 return NULL; 8 return NULL;
9 } 9 }
10 10
11 void WebCursor::SetDeviceScaleFactor(float scale_factor) { 11 void WebCursor::SetDeviceScaleFactor(float scale_factor) {
12 return; 12 return;
13 } 13 }
14 14
15 void WebCursor::InitPlatformData() { 15 void WebCursor::InitPlatformData() {
16 } 16 }
17 17
18 bool WebCursor::SerializePlatformData(Pickle* pickle) const { 18 bool WebCursor::SerializePlatformData(Pickle* pickle) const {
19 return true; 19 return true;
20 } 20 }
21 21
22 bool WebCursor::DeserializePlatformData(PickleIterator* iter) { 22 bool WebCursor::DeserializePlatformData(PickleIterator* iter) {
23 return true; 23 return true;
24 } 24 }
25 25
26 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { 26 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
27 return true; 27 return true;
28 } 28 }
29 29
30 void WebCursor::CleanupPlatformData() { 30 void WebCursor::CleanupPlatformData() {
31 } 31 }
32 32
33 void WebCursor::CopyPlatformData(const WebCursor& other) { 33 void WebCursor::CopyPlatformData(const WebCursor& other) {
34 } 34 }
OLDNEW
« no previous file with comments | « webkit/common/cursors/webcursor_mac.mm ('k') | webkit/common/cursors/webcursor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698