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

Unified Diff: third_party/WebKit/Source/platform/mojo/GeometryStructTraits.cpp

Issue 2574593003: Fix Windows build warning LNK4217 for blink_platform.dll. (Closed)
Patch Set: Rebase and change new code file's license 2016-->2017 Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/platform/mojo/GeometryStructTraits.h ('k') | third_party/WebKit/public/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/mojo/GeometryStructTraits.cpp
diff --git a/third_party/WebKit/Source/platform/mojo/GeometryStructTraits.cpp b/third_party/WebKit/Source/platform/mojo/GeometryStructTraits.cpp
index 21de7c1032e9851dc6b9b8234a26ac75bd2f6c03..4ec1c2a4bcc80d62b9bd7447d05fb1d22d94b8a2 100644
--- a/third_party/WebKit/Source/platform/mojo/GeometryStructTraits.cpp
+++ b/third_party/WebKit/Source/platform/mojo/GeometryStructTraits.cpp
@@ -2,13 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "platform/mojo/GeometryStructTraits.h"
+#include "third_party/WebKit/Source/platform/mojo/GeometryStructTraits.h"
namespace mojo {
// static
-bool StructTraits<gfx::mojom::blink::Size::DataView, ::blink::WebSize>::Read(
- gfx::mojom::blink::Size::DataView data,
+bool StructTraits<gfx::mojom::SizeDataView, ::blink::WebSize>::Read(
+ gfx::mojom::SizeDataView data,
::blink::WebSize* out) {
if (data.width() < 0 || data.height() < 0)
return false;
« no previous file with comments | « third_party/WebKit/Source/platform/mojo/GeometryStructTraits.h ('k') | third_party/WebKit/public/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698