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

Side by Side Diff: components/web_contents_delegate_android/android/java/src/org/chromium/components/web_contents_delegate_android/ColorPickerAdvanced.java

Issue 2398543003: Move Android view based ColorPicker from ui/ to components/ (Closed)
Patch Set: add owners Created 4 years, 1 month 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.ui; 5 package org.chromium.components.web_contents_delegate_android;
6 6
7 import android.content.Context; 7 import android.content.Context;
8 import android.graphics.Color; 8 import android.graphics.Color;
9 import android.util.AttributeSet; 9 import android.util.AttributeSet;
10 import android.view.LayoutInflater; 10 import android.view.LayoutInflater;
11 import android.view.View; 11 import android.view.View;
12 import android.widget.LinearLayout; 12 import android.widget.LinearLayout;
13 import android.widget.SeekBar; 13 import android.widget.SeekBar;
14 import android.widget.SeekBar.OnSeekBarChangeListener; 14 import android.widget.SeekBar.OnSeekBarChangeListener;
15 15
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 @Override 241 @Override
242 public void onStartTrackingTouch(SeekBar seekBar) { 242 public void onStartTrackingTouch(SeekBar seekBar) {
243 // Do nothing. 243 // Do nothing.
244 } 244 }
245 245
246 @Override 246 @Override
247 public void onStopTrackingTouch(SeekBar seekBar) { 247 public void onStopTrackingTouch(SeekBar seekBar) {
248 // Do nothing. 248 // Do nothing.
249 } 249 }
250 } 250 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698