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

Side by Side Diff: content/public/android/javatests/src/org/chromium/content/browser/input/ImeTest.java

Issue 2537073002: Fix leaks in InputConnectionHandlerThread (Closed)
Patch Set: fix tests Created 4 years 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
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698