blob: 52a30fc5c6a7f8a90b2e0c26fd2317599e230689 [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/views/eye_dropper/eye_dropper.h"
#include "build/build_config.h"
#include "content/public/browser/eye_dropper.h"
#if !defined(USE_AURA) && !BUILDFLAG(IS_MAC)
// Used for the platforms that don't support an eye dropper.
std::unique_ptr<content::EyeDropper> ShowEyeDropper(
content::RenderFrameHost* frame,
content::EyeDropperListener* listener) {
return nullptr;
}
#endif // !defined(USE_AURA) && !BUILDFLAG(IS_MAC)