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

Side by Side Diff: chrome/browser/ui/cocoa/passwords/base_passwords_controller_test.mm

Issue 2598963005: Include-what-you-use for WrapUnique/MakeUnique. (Closed)
Patch Set: restore order of includes in x11_topmost_window_finder_interactive_uitest.cc Created 3 years, 12 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/cocoa/passwords/base_passwords_controller_test.h" 5 #include "chrome/browser/ui/cocoa/passwords/base_passwords_controller_test.h"
6 6
7 #include "base/memory/ptr_util.h"
7 #include "base/strings/utf_string_conversions.h" 8 #include "base/strings/utf_string_conversions.h"
8 #include "chrome/browser/password_manager/password_store_factory.h" 9 #include "chrome/browser/password_manager/password_store_factory.h"
9 #include "components/password_manager/core/browser/mock_password_store.h" 10 #include "components/password_manager/core/browser/mock_password_store.h"
10 #include "components/password_manager/core/browser/password_manager_test_utils.h " 11 #include "components/password_manager/core/browser/password_manager_test_utils.h "
11 #include "content/public/browser/web_contents.h" 12 #include "content/public/browser/web_contents.h"
12 #include "content/public/test/web_contents_tester.h" 13 #include "content/public/test/web_contents_tester.h"
13 14
14 namespace { 15 namespace {
15 constexpr char kSiteOrigin[] = "http://example.com/login"; 16 constexpr char kSiteOrigin[] = "http://example.com/login";
16 } 17 }
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 @synthesize dismissed = _dismissed; 115 @synthesize dismissed = _dismissed;
115 116
116 - (void)viewShouldDismiss { 117 - (void)viewShouldDismiss {
117 _dismissed = YES; 118 _dismissed = YES;
118 } 119 }
119 120
120 - (void)refreshBubble { 121 - (void)refreshBubble {
121 } 122 }
122 123
123 @end 124 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698