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

Side by Side Diff: chrome/renderer/mock_render_thread.h

Issue 1344003: Revert 42656 - Add a Pepper audio basic functionality unit test.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 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 | « chrome/common/ipc_test_sink.cc ('k') | chrome/renderer/mock_render_thread.cc » ('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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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 #ifndef CHROME_RENDERER_MOCK_RENDER_THREAD_H_ 5 #ifndef CHROME_RENDERER_MOCK_RENDER_THREAD_H_
6 #define CHROME_RENDERER_MOCK_RENDER_THREAD_H_ 6 #define CHROME_RENDERER_MOCK_RENDER_THREAD_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 23 matching lines...) Expand all
34 34
35 // Called by the Widget. The routing id must match the routing id of AddRoute. 35 // Called by the Widget. The routing id must match the routing id of AddRoute.
36 virtual void RemoveRoute(int32 routing_id); 36 virtual void RemoveRoute(int32 routing_id);
37 37
38 // Called by the Widget. Used to send messages to the browser. 38 // Called by the Widget. Used to send messages to the browser.
39 // We short-circuit the mechanim and handle the messages right here on this 39 // We short-circuit the mechanim and handle the messages right here on this
40 // class. 40 // class.
41 virtual bool Send(IPC::Message* msg); 41 virtual bool Send(IPC::Message* msg);
42 42
43 // Our mock thread doesn't do filtering. 43 // Our mock thread doesn't do filtering.
44 virtual void AddFilter(IPC::ChannelProxy::MessageFilter* filter); 44 virtual void AddFilter(IPC::ChannelProxy::MessageFilter* filter) { }
45 virtual void RemoveFilter(IPC::ChannelProxy::MessageFilter* filter); 45 virtual void RemoveFilter(IPC::ChannelProxy::MessageFilter* filter) { }
46 46
47 // Our mock thread doesn't deal with hidden and restored tabs. 47 // Our mock thread doesn't deal with hidden and restored tabs.
48 virtual void WidgetHidden() { } 48 virtual void WidgetHidden() { }
49 virtual void WidgetRestored() { } 49 virtual void WidgetRestored() { }
50 50
51 51
52 ////////////////////////////////////////////////////////////////////////// 52 //////////////////////////////////////////////////////////////////////////
53 // The following functions are called by the test itself. 53 // The following functions are called by the test itself.
54 54
55 void set_routing_id(int32 id) { 55 void set_routing_id(int32 id) {
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 IPC::Channel::Listener* widget_; 120 IPC::Channel::Listener* widget_;
121 121
122 // The last known good deserializer for sync messages. 122 // The last known good deserializer for sync messages.
123 scoped_ptr<IPC::MessageReplyDeserializer> reply_deserializer_; 123 scoped_ptr<IPC::MessageReplyDeserializer> reply_deserializer_;
124 124
125 // A mock printer device used for printing tests. 125 // A mock printer device used for printing tests.
126 scoped_ptr<MockPrinter> printer_; 126 scoped_ptr<MockPrinter> printer_;
127 }; 127 };
128 128
129 #endif // CHROME_RENDERER_MOCK_RENDER_THREAD_H_ 129 #endif // CHROME_RENDERER_MOCK_RENDER_THREAD_H_
OLDNEW
« no previous file with comments | « chrome/common/ipc_test_sink.cc ('k') | chrome/renderer/mock_render_thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698