blob: 428dc5ce04c53341d4c71c37ca2da40793f5e554 [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";
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 content for the remote copy feature.
message RemoteCopyMessage {
// The content to write to the clipboard. Required.
oneof content {
// Plain text.
string text = 1;
// The URL of an image to download and write to the clipboard.
string image_url = 2;
}
}