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

Side by Side Diff: ui/message_center/run_all_unittests.cc

Issue 12742005: Added text line limits to collapsed and expanded notifications. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | « ui/message_center/message_center.gyp ('k') | ui/message_center/views/bounded_label.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
tfarina 2013/03/17 14:19:12 no (c)
tfarina 2013/03/17 14:19:12 would have been better to put this into a test dir
dharcourt 2013/03/18 07:01:51 Thanks for the suggestions. Done & done, but in a
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/basictypes.h"
6 #include "base/compiler_specific.h"
7 #include "base/test/test_suite.h"
8 #include "ui/base/resource/resource_bundle.h"
9 #include "ui/base/ui_base_paths.h"
10 #include "ui/compositor/compositor_setup.h"
11 #include "ui/compositor/test/compositor_test_support.h"
12 #include "ui/views/view.h"
13
14 class MessageCenterTestSuite : public base::TestSuite {
15 public:
16 MessageCenterTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {}
17
18 protected:
19 virtual void Initialize() OVERRIDE;
20 virtual void Shutdown() OVERRIDE;
21
22 private:
23 DISALLOW_COPY_AND_ASSIGN(MessageCenterTestSuite);
24 };
25
26 void MessageCenterTestSuite::Initialize() {
27 base::TestSuite::Initialize();
28
29 ui::RegisterPathProvider();
30 ui::ResourceBundle::InitSharedInstanceWithLocale("en-US", NULL);
31
32 ui::CompositorTestSupport::Initialize();
33 ui::SetupTestCompositor();
34 }
35
36 void MessageCenterTestSuite::Shutdown() {
37 ui::CompositorTestSupport::Terminate();
38 }
39
40 int main(int argc, char** argv) {
41 return MessageCenterTestSuite(argc, argv).Run();
42 }
OLDNEW
« no previous file with comments | « ui/message_center/message_center.gyp ('k') | ui/message_center/views/bounded_label.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698