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

Side by Side Diff: chrome/browser/ui/views/autofill/autofill_popup_base_view.cc

Issue 1967773004: Fix include path for moved thread_task_runner_handle.h header in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393013 Created 4 years, 7 months 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "chrome/browser/ui/views/autofill/autofill_popup_base_view.h" 5 #include "chrome/browser/ui/views/autofill/autofill_popup_base_view.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/location.h" 8 #include "base/location.h"
9 #include "base/single_thread_task_runner.h" 9 #include "base/single_thread_task_runner.h"
10 #include "base/thread_task_runner_handle.h" 10 #include "base/threading/thread_task_runner_handle.h"
11 #include "build/build_config.h" 11 #include "build/build_config.h"
12 #include "chrome/browser/ui/autofill/popup_constants.h" 12 #include "chrome/browser/ui/autofill/popup_constants.h"
13 #include "ui/views/border.h" 13 #include "ui/views/border.h"
14 #include "ui/views/focus/focus_manager.h" 14 #include "ui/views/focus/focus_manager.h"
15 #include "ui/views/widget/widget.h" 15 #include "ui/views/widget/widget.h"
16 16
17 namespace autofill { 17 namespace autofill {
18 18
19 const SkColor AutofillPopupBaseView::kBorderColor = 19 const SkColor AutofillPopupBaseView::kBorderColor =
20 SkColorSetARGB(0xFF, 0xC7, 0xCA, 0xCE); 20 SkColorSetARGB(0xFF, 0xC7, 0xCA, 0xCE);
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 void AutofillPopupBaseView::HideController() { 245 void AutofillPopupBaseView::HideController() {
246 if (delegate_) 246 if (delegate_)
247 delegate_->Hide(); 247 delegate_->Hide();
248 } 248 }
249 249
250 gfx::NativeView AutofillPopupBaseView::container_view() { 250 gfx::NativeView AutofillPopupBaseView::container_view() {
251 return delegate_->container_view(); 251 return delegate_->container_view();
252 } 252 }
253 253
254 } // namespace autofill 254 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698