OLD | NEW |
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 #include "chrome/browser/chromeos/extensions/file_manager/desktop_notifications.
h" | 5 #include "chrome/browser/chromeos/file_manager/desktop_notifications.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
11 #include "grit/generated_resources.h" | 11 #include "grit/generated_resources.h" |
12 #include "testing/gmock/include/gmock/gmock.h" | 12 #include "testing/gmock/include/gmock/gmock.h" |
13 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
14 #include "ui/base/l10n/l10n_util.h" | 14 #include "ui/base/l10n/l10n_util.h" |
15 | 15 |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 device_label, true, false, false); | 235 device_label, true, false, false); |
236 notifications->ManageNotificationsOnMountCompleted(notification_path, | 236 notifications->ManageNotificationsOnMountCompleted(notification_path, |
237 device_label, false, false, false); | 237 device_label, false, false, false); |
238 notifications->ManageNotificationsOnMountCompleted(notification_path, | 238 notifications->ManageNotificationsOnMountCompleted(notification_path, |
239 device_label, false, false, false); | 239 device_label, false, false, false); |
240 notifications->ManageNotificationsOnMountCompleted(notification_path, | 240 notifications->ManageNotificationsOnMountCompleted(notification_path, |
241 device_label, false, false, false); | 241 device_label, false, false, false); |
242 } | 242 } |
243 | 243 |
244 } // namespace file_manager. | 244 } // namespace file_manager. |
OLD | NEW |