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

Side by Side Diff: mandoline/ui/desktop_ui/browser_apptest.cc

Issue 1548553002: Switch to standard integer types in mandoline/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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/macros.h"
5 #include "mandoline/ui/desktop_ui/public/interfaces/launch_handler.mojom.h" 6 #include "mandoline/ui/desktop_ui/public/interfaces/launch_handler.mojom.h"
6 #include "mojo/application/public/cpp/application_impl.h" 7 #include "mojo/application/public/cpp/application_impl.h"
7 #include "mojo/application/public/cpp/application_test_base.h" 8 #include "mojo/application/public/cpp/application_test_base.h"
8 9
9 namespace mandoline { 10 namespace mandoline {
10 11
11 class BrowserTest : public mojo::test::ApplicationTestBase { 12 class BrowserTest : public mojo::test::ApplicationTestBase {
12 public: 13 public:
13 BrowserTest() : ApplicationTestBase() {} 14 BrowserTest() : ApplicationTestBase() {}
14 ~BrowserTest() override {} 15 ~BrowserTest() override {}
(...skipping 13 matching lines...) Expand all
28 }; 29 };
29 30
30 // A simple sanity check for connecting to the LaunchHandler. 31 // A simple sanity check for connecting to the LaunchHandler.
31 TEST_F(BrowserTest, LaunchHandlerBasic) { 32 TEST_F(BrowserTest, LaunchHandlerBasic) {
32 ASSERT_TRUE(launch_handler_.is_bound()); 33 ASSERT_TRUE(launch_handler_.is_bound());
33 launch_handler_->LaunchURL(mojo::String::From("data:text/html,foo")); 34 launch_handler_->LaunchURL(mojo::String::From("data:text/html,foo"));
34 EXPECT_TRUE(launch_handler_.is_bound()); 35 EXPECT_TRUE(launch_handler_.is_bound());
35 } 36 }
36 37
37 } // namespace mandoline 38 } // namespace mandoline
OLDNEW
« no previous file with comments | « mandoline/services/core_services/core_services_application_delegate.cc ('k') | mandoline/ui/desktop_ui/browser_commands.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698