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

Side by Side Diff: content/common/find_match_rect_android.cc

Issue 23030005: Android: exclude dead code from android build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes for build breakage Created 7 years, 3 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
« no previous file with comments | « content/common/find_match_rect_android.h ('k') | content/common/font_list_android.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 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 #include "content/common/find_match_rect_android.h"
6
7 namespace content {
8
9 FindMatchRect::FindMatchRect()
10 : left(0.0f),
11 top(0.0f),
12 right(0.0f),
13 bottom(0.0f) {
14 }
15
16 FindMatchRect::FindMatchRect(float left, float top, float right, float bottom)
17 : left(left),
18 top(top),
19 right(right),
20 bottom(bottom) {
21 }
22
23 } // namespace content
OLDNEW
« no previous file with comments | « content/common/find_match_rect_android.h ('k') | content/common/font_list_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698