Chromium Code Reviews| Index: content/public/common/find_match_rect_android.h |
| diff --git a/content/public/common/find_match_rect_android.h b/content/public/common/find_match_rect_android.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..25ef585d9d4905669530dca73f16b8cba85d5981 |
| --- /dev/null |
| +++ b/content/public/common/find_match_rect_android.h |
| @@ -0,0 +1,19 @@ |
| +// 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
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CONTENT_PUBLIC_COMMON_FIND_MATCH_RECT_ANDROID_H_ |
| +#define CONTENT_PUBLIC_COMMON_FIND_MATCH_RECT_ANDROID_H_ |
| +#pragma once |
| + |
| +struct FindMatchRect { |
|
jam
2012/06/08 23:45:09
nit: everything in content API has to be in conten
|
| + public: |
| + FindMatchRect(); |
| + 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
|
| + float left; |
| + float top; |
| + float right; |
| + float bottom; |
| +}; |
| + |
| +#endif // CONTENT_PUBLIC_COMMON_FIND_MATCH_RECT_ANDROID_H_ |