Refactor WebsiteSettings to operate on a SecurityInfo
[chromium-blink-merge.git] / blimp / common / proto / common.proto
blob578c02b63b78d3b0e09bedfc4582d517d2c263cb
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 // Common message types for sharing across Blimp subprotocols.
7 syntax = "proto2";
9 option optimize_for = LITE_RUNTIME;
11 package blimp;
13 message CoordinatePair {
14   optional sint32 x = 1;
15   optional sint32 y = 2;