// Copyright 2015 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/omnibox/clipboard_utils.h" #include <string> #include "base/strings/utf_string_conversions.h" #include "components/omnibox/browser/omnibox_view.h" #include "ui/base/clipboard/clipboard.h" #include "ui/base/data_transfer_policy/data_transfer_endpoint.h" std::u16string GetClipboardText(bool notify_if_restricted) { … }