Bluetooth: Don't attempt a pairing for devices not supporting it.
[chromium-blink-merge.git] / content / common / find_match_rect_android.cc
blobd6a624ceb051970e3d6c2fd636e31b17cc19c111
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.
5 #include "content/common/find_match_rect_android.h"
7 namespace content {
9 FindMatchRect::FindMatchRect()
10 : left(0.0f),
11 top(0.0f),
12 right(0.0f),
13 bottom(0.0f) {
16 FindMatchRect::FindMatchRect(float left, float top, float right, float bottom)
17 : left(left),
18 top(top),
19 right(right),
20 bottom(bottom) {
23 } // namespace content