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

Side by Side Diff: chrome/browser/ui/gtk/extensions/media_galleries_dialog_gtk_unittest.cc

Issue 23727009: Cleanup: Remove chrome namespace for storage monitor and media galleries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nit Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
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 "base/strings/string_number_conversions.h" 5 #include "base/strings/string_number_conversions.h"
6 #include "base/strings/utf_string_conversions.h" 6 #include "base/strings/utf_string_conversions.h"
7 #include "chrome/browser/media_galleries/media_galleries_dialog_controller_mock. h" 7 #include "chrome/browser/media_galleries/media_galleries_dialog_controller_mock. h"
8 #include "chrome/browser/storage_monitor/storage_info.h" 8 #include "chrome/browser/storage_monitor/storage_info.h"
9 #include "chrome/browser/ui/gtk/extensions/media_galleries_dialog_gtk.h" 9 #include "chrome/browser/ui/gtk/extensions/media_galleries_dialog_gtk.h"
10 #include "chrome/common/extensions/extension.h" 10 #include "chrome/common/extensions/extension.h"
11 #include "chrome/common/extensions/extension_test_util.h" 11 #include "chrome/common/extensions/extension_test_util.h"
12 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
13 13
14 using ::testing::_; 14 using ::testing::_;
15 using ::testing::NiceMock; 15 using ::testing::NiceMock;
16 using ::testing::Return; 16 using ::testing::Return;
17 using ::testing::ReturnPointee; 17 using ::testing::ReturnPointee;
18 using ::testing::ReturnRef; 18 using ::testing::ReturnRef;
19 19
20 namespace chrome {
21
22 namespace { 20 namespace {
23 21
24 MediaGalleryPrefInfo MakePrefInfoForTesting(MediaGalleryPrefId id) { 22 MediaGalleryPrefInfo MakePrefInfoForTesting(MediaGalleryPrefId id) {
25 MediaGalleryPrefInfo gallery; 23 MediaGalleryPrefInfo gallery;
26 gallery.pref_id = id; 24 gallery.pref_id = id;
27 gallery.device_id = StorageInfo::MakeDeviceId(StorageInfo::FIXED_MASS_STORAGE, 25 gallery.device_id = StorageInfo::MakeDeviceId(StorageInfo::FIXED_MASS_STORAGE,
28 base::Int64ToString(id)); 26 base::Int64ToString(id));
29 gallery.display_name = ASCIIToUTF16("Display Name"); 27 gallery.display_name = ASCIIToUTF16("Display Name");
30 return gallery; 28 return gallery;
31 } 29 }
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 MediaGalleryPrefInfo gallery2 = MakePrefInfoForTesting(2); 175 MediaGalleryPrefInfo gallery2 = MakePrefInfoForTesting(2);
178 attached_permissions.push_back( 176 attached_permissions.push_back(
179 MediaGalleriesDialogController::GalleryPermission(gallery2, true)); 177 MediaGalleriesDialogController::GalleryPermission(gallery2, true));
180 dialog.UpdateGallery(gallery2, true); 178 dialog.UpdateGallery(gallery2, true);
181 EXPECT_EQ(2U, dialog.checkbox_map_.size()); 179 EXPECT_EQ(2U, dialog.checkbox_map_.size());
182 180
183 dialog.ForgetGallery(gallery2.pref_id); 181 dialog.ForgetGallery(gallery2.pref_id);
184 attached_permissions.pop_back(); 182 attached_permissions.pop_back();
185 EXPECT_EQ(1U, dialog.checkbox_map_.size()); 183 EXPECT_EQ(1U, dialog.checkbox_map_.size());
186 } 184 }
187
188 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698