blob: 68a1a90d6efad22d9637867a5816089e3ec0c49e [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
option java_multiple_files = true;
option java_package = "org.chromium.chrome.browser.sharing.proto";
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;
}