| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <gmock/gmock.h> | 5 #include <gmock/gmock.h> |
| 6 #include <gtest/gtest.h> | 6 #include <gtest/gtest.h> |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
| 11 #include "chrome/browser/chromeos/extensions/file_browser_notifications.h" | 11 #include "chrome/browser/chromeos/extensions/file_browser_notifications.h" |
| 12 #include "chromeos/dbus/mock_dbus_thread_manager.h" // For SystemNotifications | |
| 13 #include "grit/generated_resources.h" | 12 #include "grit/generated_resources.h" |
| 14 #include "ui/base/l10n/l10n_util.h" | 13 #include "ui/base/l10n/l10n_util.h" |
| 15 | 14 |
| 16 using ::testing::_; | 15 using ::testing::_; |
| 17 using ::testing::InSequence; | 16 using ::testing::InSequence; |
| 18 using ::testing::Return; | 17 using ::testing::Return; |
| 19 using ::testing::StrEq; | 18 using ::testing::StrEq; |
| 20 using ::testing::AnyNumber; | 19 using ::testing::AnyNumber; |
| 21 | 20 |
| 22 namespace chromeos { | 21 namespace chromeos { |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 device_label, true, false, false); | 216 device_label, true, false, false); |
| 218 notifications->ManageNotificationsOnMountCompleted(notification_path, | 217 notifications->ManageNotificationsOnMountCompleted(notification_path, |
| 219 device_label, false, false, false); | 218 device_label, false, false, false); |
| 220 notifications->ManageNotificationsOnMountCompleted(notification_path, | 219 notifications->ManageNotificationsOnMountCompleted(notification_path, |
| 221 device_label, false, false, false); | 220 device_label, false, false, false); |
| 222 notifications->ManageNotificationsOnMountCompleted(notification_path, | 221 notifications->ManageNotificationsOnMountCompleted(notification_path, |
| 223 device_label, false, false, false); | 222 device_label, false, false, false); |
| 224 } | 223 } |
| 225 | 224 |
| 226 } // namespace chromeos. | 225 } // namespace chromeos. |
| OLD | NEW |