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

Side by Side Diff: chrome/browser/dom_ui/html_dialog_tab_contents_delegate_unittest.cc

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 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
« no previous file with comments | « chrome/browser/dom_ui/fileicon_source.cc ('k') | chrome/browser/dom_ui/ntp_resource_cache.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/dom_ui/html_dialog_tab_contents_delegate.h" 5 #include "chrome/browser/dom_ui/html_dialog_tab_contents_delegate.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/scoped_ptr.h" 10 #include "base/scoped_ptr.h"
11 #include "chrome/browser/history/history_types.h" 11 #include "chrome/browser/history/history_types.h"
12 #include "chrome/browser/tab_contents/test_tab_contents.h" 12 #include "chrome/browser/tab_contents/test_tab_contents.h"
13 #include "chrome/browser/ui/browser.h" 13 #include "chrome/browser/ui/browser.h"
14 #include "chrome/browser/ui/browser_list.h" 14 #include "chrome/browser/ui/browser_list.h"
15 #include "chrome/common/url_constants.h" 15 #include "chrome/common/url_constants.h"
16 #include "chrome/test/browser_with_test_window_test.h" 16 #include "chrome/test/browser_with_test_window_test.h"
17 #include "chrome/test/test_browser_window.h" 17 #include "chrome/test/test_browser_window.h"
18 #include "chrome/test/testing_profile.h" 18 #include "chrome/test/testing_profile.h"
19 #include "gfx/rect.h"
20 #include "googleurl/src/gurl.h" 19 #include "googleurl/src/gurl.h"
21 #include "testing/gmock/include/gmock/gmock.h" 20 #include "testing/gmock/include/gmock/gmock.h"
22 #include "testing/gtest/include/gtest/gtest.h" 21 #include "testing/gtest/include/gtest/gtest.h"
22 #include "ui/gfx/rect.h"
23 23
24 namespace { 24 namespace {
25 25
26 class TestTabContentsDelegate : public HtmlDialogTabContentsDelegate { 26 class TestTabContentsDelegate : public HtmlDialogTabContentsDelegate {
27 public: 27 public:
28 explicit TestTabContentsDelegate(Profile* profile) 28 explicit TestTabContentsDelegate(Profile* profile)
29 : HtmlDialogTabContentsDelegate(profile) {} 29 : HtmlDialogTabContentsDelegate(profile) {}
30 30
31 virtual ~TestTabContentsDelegate() { 31 virtual ~TestTabContentsDelegate() {
32 } 32 }
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 test_tab_contents_delegate_->OpenURLFromTab( 105 test_tab_contents_delegate_->OpenURLFromTab(
106 NULL, GURL(chrome::kAboutBlankURL), GURL(), 106 NULL, GURL(chrome::kAboutBlankURL), GURL(),
107 NEW_FOREGROUND_TAB, PageTransition::LINK); 107 NEW_FOREGROUND_TAB, PageTransition::LINK);
108 test_tab_contents_delegate_->AddNewContents(NULL, NULL, NEW_FOREGROUND_TAB, 108 test_tab_contents_delegate_->AddNewContents(NULL, NULL, NEW_FOREGROUND_TAB,
109 gfx::Rect(), false); 109 gfx::Rect(), false);
110 EXPECT_EQ(0, browser()->tab_count()); 110 EXPECT_EQ(0, browser()->tab_count());
111 EXPECT_EQ(1U, BrowserList::size()); 111 EXPECT_EQ(1U, BrowserList::size());
112 } 112 }
113 113
114 } // namespace 114 } // namespace
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/fileicon_source.cc ('k') | chrome/browser/dom_ui/ntp_resource_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698