From 99abf2cddf5e6b12ceeb38bd52939cc3ba71b1fe Mon Sep 17 00:00:00 2001 From: lizeb Date: Mon, 3 Aug 2015 07:33:14 -0700 Subject: [PATCH] Link fix: Make an undefined virtual function pure. Per the ISO C++ standard, all non-pure virtual function should be defined ([class.virtual/8]). This breaks the orderfile bot linking step. Make the function pure virtual to fix it. TBR=nasko@chromium.org Review URL: https://codereview.chromium.org/1271513003 Cr-Commit-Position: refs/heads/master@{#341526} --- content/renderer/android/synchronous_compositor_factory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/renderer/android/synchronous_compositor_factory.h b/content/renderer/android/synchronous_compositor_factory.h index f1e59135c13e..b670f9730cdf 100644 --- a/content/renderer/android/synchronous_compositor_factory.h +++ b/content/renderer/android/synchronous_compositor_factory.h @@ -64,7 +64,7 @@ class SynchronousCompositorFactory { // Methods below should not be called if OverrideWithFactory is false. // Instead, just fallback to default implementation, as if factory // does not exist. - virtual bool OverrideWithFactory(); + virtual bool OverrideWithFactory() = 0; virtual scoped_refptr CreateOffscreenContextProvider( const blink::WebGraphicsContext3D::Attributes& attributes, -- 2.11.4.GIT