| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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.input; | 5 package org.chromium.content.browser.input; |
| 6 | 6 |
| 7 import android.app.Activity; | 7 import android.app.Activity; |
| 8 import android.content.ClipData; | 8 import android.content.ClipData; |
| 9 import android.content.ClipboardManager; | 9 import android.content.ClipboardManager; |
| 10 import android.content.Context; | 10 import android.content.Context; |
| (...skipping 1866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1877 | 1877 |
| 1878 @Override | 1878 @Override |
| 1879 public void onViewAttachedToWindow() { | 1879 public void onViewAttachedToWindow() { |
| 1880 mFactory.onViewAttachedToWindow(); | 1880 mFactory.onViewAttachedToWindow(); |
| 1881 } | 1881 } |
| 1882 | 1882 |
| 1883 @Override | 1883 @Override |
| 1884 public void onViewDetachedFromWindow() { | 1884 public void onViewDetachedFromWindow() { |
| 1885 mFactory.onViewDetachedFromWindow(); | 1885 mFactory.onViewDetachedFromWindow(); |
| 1886 } | 1886 } |
| 1887 |
| 1888 @Override |
| 1889 public void destroy() { |
| 1890 mFactory.destroy(); |
| 1891 } |
| 1887 } | 1892 } |
| 1888 } | 1893 } |
| OLD | NEW |