blob: f20645440033aa31ab21946f41b43eb3f2444b3b [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package chrome_browser_sharing;
// Required in Chrome.
option optimize_for = LITE_RUNTIME;
// Message to pass clipboard text to shared clipboard feature.
message SharedClipboardMessage {
// required
string text = 1;
}