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

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

Issue 16482: Refactor the render widget unittest so it can be reused to create a render vi... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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_message_utils.h ('k') | chrome/renderer/mock_render_thread.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_RENDERER_MOCK_RENDER_PROCESS_H_
6 #define CHROME_RENDERER_MOCK_RENDER_PROCESS_H_
7
8 #include <string>
9
10 #include "chrome/common/child_process.h"
11
12 // This class is a trivial mock of the child process singleton. It is necessary
13 // so we don't trip DCHECKs in ChildProcess::ReleaseProcess() when destroying
14 // a render widget instance.
15 class MockProcess : public ChildProcess {
16 public:
17 explicit MockProcess(const std::wstring& channel_name) {}
18 static void GlobalInit() {
19 ChildProcessFactory<MockProcess> factory;
20 ChildProcess::GlobalInit(L"dummy", &factory);
21 }
22 };
23
24 #endif // CHROME_RENDERER_MOCK_RENDER_PROCESS_H_
25
OLDNEW
« no previous file with comments | « chrome/common/ipc_message_utils.h ('k') | chrome/renderer/mock_render_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698