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

Unified Diff: chrome/browser/ui/cocoa/passwords/manage_passwords_controller_test.mm

Issue 1411733009: Bulk rename files in chrome/browser/ui/cocoa/passwords/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix-federation
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/passwords/manage_passwords_controller_test.mm
diff --git a/chrome/browser/ui/cocoa/passwords/manage_passwords_controller_test.mm b/chrome/browser/ui/cocoa/passwords/manage_passwords_controller_test.mm
deleted file mode 100644
index fd4e2f6f1e3e21194a3cd829f4bf3aadfef0945c..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/cocoa/passwords/manage_passwords_controller_test.mm
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/ui/cocoa/passwords/manage_passwords_controller_test.h"
-
-#include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h"
-#include "chrome/browser/ui/passwords/manage_passwords_ui_controller_mock.h"
-#include "content/public/test/web_contents_tester.h"
-
-ManagePasswordsControllerTest::
- ManagePasswordsControllerTest() {
-}
-
-ManagePasswordsControllerTest::
- ~ManagePasswordsControllerTest() {
-}
-
-void ManagePasswordsControllerTest::SetUp() {
- CocoaProfileTest::SetUp();
- // Create the test UIController here so that it's bound to and owned by
- // |test_web_contents_| and therefore accessible to the model.
- test_web_contents_.reset(
- content::WebContentsTester::CreateTestWebContents(profile(), NULL));
- ui_controller_ =
- new ManagePasswordsUIControllerMock(test_web_contents_.get());
-}
-
-ManagePasswordsBubbleModel*
-ManagePasswordsControllerTest::model() {
- if (!model_) {
- model_.reset(new ManagePasswordsBubbleModel(
- test_web_contents_.get(), ManagePasswordsBubbleModel::AUTOMATIC));
- }
- return model_.get();
-}
-
-@implementation ContentViewDelegateMock
-
-@synthesize dismissed = _dismissed;
-
-- (void)viewShouldDismiss {
- _dismissed = YES;
-}
-
-@end

Powered by Google App Engine
This is Rietveld 408576698