| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 package org.chromium.content.browser; | 5 package org.chromium.content.browser; |
| 6 | 6 |
| 7 import android.content.ActivityNotFoundException; | 7 import android.content.ActivityNotFoundException; |
| 8 import android.content.Context; | 8 import android.content.Context; |
| 9 import android.content.Intent; | 9 import android.content.Intent; |
| 10 import android.view.KeyEvent; | 10 import android.view.KeyEvent; |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 | 246 |
| 247 /** | 247 /** |
| 248 * Returns the bottom system window inset in pixels. The system window inset
represents the area | 248 * Returns the bottom system window inset in pixels. The system window inset
represents the area |
| 249 * of a full-screen window that is partially or fully obscured by the status
bar, navigation | 249 * of a full-screen window that is partially or fully obscured by the status
bar, navigation |
| 250 * bar, IME or other system windows. | 250 * bar, IME or other system windows. |
| 251 * @return The bottom system window inset. | 251 * @return The bottom system window inset. |
| 252 */ | 252 */ |
| 253 public int getSystemWindowInsetBottom() { | 253 public int getSystemWindowInsetBottom() { |
| 254 return 0; | 254 return 0; |
| 255 } | 255 } |
| 256 |
| 257 /** |
| 258 * Return the product version. |
| 259 */ |
| 260 public String getProductVersion() { |
| 261 return ""; |
| 262 } |
| 256 } | 263 } |
| OLD | NEW |