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

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

Issue 223583003: Exclude wifi_data_provider_linux.cc for chromecast build as chromecast uses wpa_supplicant instead … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add chromecast-specific content port implementation. Created 6 years, 8 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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"
8 #include "third_party/WebKit/public/platform/WebCursorInfo.h"
9
10 namespace content { 7 namespace content {
11 8
12 void WebCursor::InitPlatformData() { 9 void WebCursor::InitPlatformData() {
13 } 10 }
14 11
15 bool WebCursor::SerializePlatformData(Pickle* pickle) const { 12 bool WebCursor::SerializePlatformData(Pickle* pickle) const {
16 return true; 13 return true;
17 } 14 }
18 15
19 bool WebCursor::DeserializePlatformData(PickleIterator* iter) { 16 bool WebCursor::DeserializePlatformData(PickleIterator* iter) {
20 return true; 17 return true;
21 } 18 }
22 19
23 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { 20 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
24 return true; 21 return true;
25 } 22 }
26 23
27 void WebCursor::CleanupPlatformData() { 24 void WebCursor::CleanupPlatformData() {
28 } 25 }
29 26
30 void WebCursor::CopyPlatformData(const WebCursor& other) { 27 void WebCursor::CopyPlatformData(const WebCursor& other) {
31 } 28 }
32 29
33 } // namespace content 30 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698