OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #import "chrome/browser/ui/cocoa/content_settings/content_setting_bubble_cocoa.h
" | 5 #import "chrome/browser/ui/cocoa/content_settings/content_setting_bubble_cocoa.h
" |
6 | 6 |
7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
8 | 8 |
9 #include "base/debug/debugger.h" | 9 #include "base/debug/debugger.h" |
10 #include "base/mac/scoped_nsautorelease_pool.h" | 10 #include "base/mac/scoped_nsautorelease_pool.h" |
11 #include "base/memory/scoped_nsobject.h" | 11 #include "base/memory/scoped_nsobject.h" |
12 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" | 12 #import "chrome/browser/ui/cocoa/cocoa_test_helper.h" |
13 #include "chrome/browser/ui/content_settings/content_setting_bubble_model.h" | 13 #include "chrome/browser/ui/content_settings/content_setting_bubble_model.h" |
14 #include "chrome/browser/ui/tab_contents/test_tab_contents_wrapper.h" | 14 #include "chrome/browser/ui/tab_contents/test_tab_contents_wrapper.h" |
15 #include "chrome/common/content_settings_types.h" | 15 #include "chrome/common/content_settings_types.h" |
16 #include "chrome/test/base/testing_profile.h" | 16 #include "chrome/test/base/testing_profile.h" |
17 #include "content/test/test_browser_thread.h" | 17 #include "content/public/test/test_browser_thread.h" |
18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
19 | 19 |
20 using content::BrowserThread; | 20 using content::BrowserThread; |
21 | 21 |
22 namespace { | 22 namespace { |
23 | 23 |
24 class DummyContentSettingBubbleModel : public ContentSettingBubbleModel { | 24 class DummyContentSettingBubbleModel : public ContentSettingBubbleModel { |
25 public: | 25 public: |
26 DummyContentSettingBubbleModel(TabContentsWrapper* tab_contents, | 26 DummyContentSettingBubbleModel(TabContentsWrapper* tab_contents, |
27 Profile* profile, | 27 Profile* profile, |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 settingsType) | 85 settingsType) |
86 parentWindow:parent | 86 parentWindow:parent |
87 anchoredAt:NSMakePoint(50, 20)]; | 87 anchoredAt:NSMakePoint(50, 20)]; |
88 EXPECT_TRUE(controller != nil); | 88 EXPECT_TRUE(controller != nil); |
89 EXPECT_TRUE([[controller window] isVisible]); | 89 EXPECT_TRUE([[controller window] isVisible]); |
90 [parent.get() close]; | 90 [parent.get() close]; |
91 } | 91 } |
92 } | 92 } |
93 | 93 |
94 } // namespace | 94 } // namespace |
OLD | NEW |