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

Side by Side Diff: chrome/browser/media/router/create_presentation_connection_request_unittest.cc

Issue 2771413003: Move c/b/media/router/mojo/*.mojom to chrome/common/media_router/mojo/*.mojom (Closed)
Patch Set: Rebase Created 3 years, 8 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
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 "chrome/browser/media/router/create_presentation_connection_request.h"
6
5 #include "base/bind.h" 7 #include "base/bind.h"
6 #include "chrome/browser/media/router/create_presentation_connection_request.h" 8 #include "chrome/common/media_router/media_source_helper.h"
7 #include "chrome/browser/media/router/media_source_helper.h"
8 #include "content/public/browser/presentation_service_delegate.h" 9 #include "content/public/browser/presentation_service_delegate.h"
9 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
10 11
11 namespace media_router { 12 namespace media_router {
12 13
13 namespace { 14 namespace {
14 15
15 constexpr char kPresentationUrl1[] = "http://www.example.com/presentation.html"; 16 constexpr char kPresentationUrl1[] = "http://www.example.com/presentation.html";
16 constexpr char kPresentationUrl2[] = "http://www.example.net/alternate.html"; 17 constexpr char kPresentationUrl2[] = "http://www.example.net/alternate.html";
17 constexpr char kFrameUrl[] = "http://google.com"; 18 constexpr char kFrameUrl[] = "http://google.com";
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 render_frame_host_id_, presentation_urls_, url::Origin(GURL(kFrameUrl)), 105 render_frame_host_id_, presentation_urls_, url::Origin(GURL(kFrameUrl)),
105 base::Bind(&CreatePresentationConnectionRequestTest::FailOnSuccess, 106 base::Bind(&CreatePresentationConnectionRequestTest::FailOnSuccess,
106 base::Unretained(this)), 107 base::Unretained(this)),
107 base::Bind(&CreatePresentationConnectionRequestTest::OnError, 108 base::Bind(&CreatePresentationConnectionRequestTest::OnError,
108 base::Unretained(this), error)); 109 base::Unretained(this), error));
109 request.InvokeErrorCallback(error); 110 request.InvokeErrorCallback(error);
110 EXPECT_TRUE(cb_invoked_); 111 EXPECT_TRUE(cb_invoked_);
111 } 112 }
112 113
113 } // namespace media_router 114 } // namespace media_router
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698