Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
|
jam
2012/06/08 23:45:09
are you planning on exposing this later? i only se
Yaron
2012/06/09 01:02:11
From downstream it looks like the native side is o
John Grabowski
2012/06/12 01:46:30
Don't think so.
jam
2012/06/12 17:44:02
if it's not used outside of content, move this to
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CONTENT_PUBLIC_COMMON_FIND_MATCH_RECT_ANDROID_H_ | |
| 6 #define CONTENT_PUBLIC_COMMON_FIND_MATCH_RECT_ANDROID_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 struct FindMatchRect { | |
|
jam
2012/06/08 23:45:09
nit: everything in content API has to be in conten
| |
| 10 public: | |
| 11 FindMatchRect(); | |
| 12 FindMatchRect(float left, float top, float right, float bottom); | |
|
jam
2012/06/08 23:45:09
where is the cc file for this? if you can do this
Yaron
2012/06/09 01:02:11
Downstream it's in the same dir. I guess you can a
| |
| 13 float left; | |
| 14 float top; | |
| 15 float right; | |
| 16 float bottom; | |
| 17 }; | |
| 18 | |
| 19 #endif // CONTENT_PUBLIC_COMMON_FIND_MATCH_RECT_ANDROID_H_ | |
| OLD | NEW |