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

Side by Side Diff: chrome/browser/ui/views/first_run_bubble_unittest.cc

Issue 628773002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[t-v]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « chrome/browser/ui/views/first_run_bubble.h ('k') | chrome/browser/ui/views/first_run_dialog.h » ('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) 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 "chrome/browser/search_engines/template_url_service_factory.h" 5 #include "chrome/browser/search_engines/template_url_service_factory.h"
6 #include "chrome/browser/ui/views/first_run_bubble.h" 6 #include "chrome/browser/ui/views/first_run_bubble.h"
7 #include "chrome/test/base/testing_profile.h" 7 #include "chrome/test/base/testing_profile.h"
8 #include "components/search_engines/template_url.h" 8 #include "components/search_engines/template_url.h"
9 #include "components/search_engines/template_url_service.h" 9 #include "components/search_engines/template_url_service.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "ui/views/test/views_test_base.h" 11 #include "ui/views/test/views_test_base.h"
12 #include "ui/views/view.h" 12 #include "ui/views/view.h"
13 #include "ui/views/widget/widget.h" 13 #include "ui/views/widget/widget.h"
14 14
15 class FirstRunBubbleTest : public views::ViewsTestBase { 15 class FirstRunBubbleTest : public views::ViewsTestBase {
16 public: 16 public:
17 FirstRunBubbleTest(); 17 FirstRunBubbleTest();
18 virtual ~FirstRunBubbleTest(); 18 virtual ~FirstRunBubbleTest();
19 19
20 // Overrides from views::ViewsTestBase: 20 // Overrides from views::ViewsTestBase:
21 virtual void SetUp() OVERRIDE; 21 virtual void SetUp() override;
22 22
23 protected: 23 protected:
24 TestingProfile* profile() { return &profile_; } 24 TestingProfile* profile() { return &profile_; }
25 25
26 private: 26 private:
27 TestingProfile profile_; 27 TestingProfile profile_;
28 TemplateURL* default_t_url_; 28 TemplateURL* default_t_url_;
29 29
30 DISALLOW_COPY_AND_ASSIGN(FirstRunBubbleTest); 30 DISALLOW_COPY_AND_ASSIGN(FirstRunBubbleTest);
31 }; 31 };
(...skipping 17 matching lines...) Expand all
49 params.ownership = views::Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET; 49 params.ownership = views::Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET;
50 scoped_ptr<views::Widget> anchor_widget(new views::Widget); 50 scoped_ptr<views::Widget> anchor_widget(new views::Widget);
51 anchor_widget->Init(params); 51 anchor_widget->Init(params);
52 anchor_widget->Show(); 52 anchor_widget->Show();
53 53
54 FirstRunBubble* delegate = 54 FirstRunBubble* delegate =
55 FirstRunBubble::ShowBubble(NULL, anchor_widget->GetContentsView()); 55 FirstRunBubble::ShowBubble(NULL, anchor_widget->GetContentsView());
56 EXPECT_TRUE(delegate != NULL); 56 EXPECT_TRUE(delegate != NULL);
57 delegate->GetWidget()->CloseNow(); 57 delegate->GetWidget()->CloseNow();
58 } 58 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/first_run_bubble.h ('k') | chrome/browser/ui/views/first_run_dialog.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698