OLD | NEW |
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 "base/bind.h" | 5 #include "base/bind.h" |
6 #include "base/utf_string_conversions.h" | 6 #include "base/utf_string_conversions.h" |
7 #include "content/browser/intents/intent_injector.h" | 7 #include "content/browser/intents/intent_injector.h" |
8 #include "content/browser/intents/internal_web_intents_dispatcher.h" | 8 #include "content/browser/intents/internal_web_intents_dispatcher.h" |
9 #include "content/browser/renderer_host/test_render_view_host.h" | 9 #include "content/browser/renderer_host/test_render_view_host.h" |
10 #include "content/browser/tab_contents/test_web_contents.h" | 10 #include "content/browser/web_contents/test_web_contents.h" |
11 #include "webkit/glue/web_intent_data.h" | 11 #include "webkit/glue/web_intent_data.h" |
12 #include "webkit/glue/web_intent_reply_data.h" | 12 #include "webkit/glue/web_intent_reply_data.h" |
13 | 13 |
14 class InternalWebIntentsDispatcherTest | 14 class InternalWebIntentsDispatcherTest |
15 : public content::RenderViewHostTestHarness { | 15 : public content::RenderViewHostTestHarness { |
16 public: | 16 public: |
17 InternalWebIntentsDispatcherTest() { | 17 InternalWebIntentsDispatcherTest() { |
18 replied_ = 0; | 18 replied_ = 0; |
19 } | 19 } |
20 | 20 |
(...skipping 30 matching lines...) Expand all Loading... |
51 | 51 |
52 dispatcher->DispatchIntent(web_contents()); | 52 dispatcher->DispatchIntent(web_contents()); |
53 | 53 |
54 dispatcher->SendReplyMessage(webkit_glue::WEB_INTENT_REPLY_SUCCESS, | 54 dispatcher->SendReplyMessage(webkit_glue::WEB_INTENT_REPLY_SUCCESS, |
55 ASCIIToUTF16("success")); | 55 ASCIIToUTF16("success")); |
56 | 56 |
57 EXPECT_EQ(ASCIIToUTF16("success"), notified_data_); | 57 EXPECT_EQ(ASCIIToUTF16("success"), notified_data_); |
58 EXPECT_EQ(1, replied_); | 58 EXPECT_EQ(1, replied_); |
59 EXPECT_EQ(webkit_glue::WEB_INTENT_REPLY_SUCCESS, notified_reply_type_); | 59 EXPECT_EQ(webkit_glue::WEB_INTENT_REPLY_SUCCESS, notified_reply_type_); |
60 } | 60 } |
OLD | NEW |