Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Side by Side Diff: content/public/common/find_match_rect_android.h

Issue 10536066: android content shell bringup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add comments Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698