diff options
Diffstat (limited to 'content/test/mock_render_process.h')
-rw-r--r-- | content/test/mock_render_process.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/content/test/mock_render_process.h b/content/test/mock_render_process.h index 589556f..25a66ca 100644 --- a/content/test/mock_render_process.h +++ b/content/test/mock_render_process.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -21,10 +21,13 @@ class MockRenderProcess : public RenderProcess { const gfx::Rect& rect) OVERRIDE; virtual void ReleaseTransportDIB(TransportDIB* memory) OVERRIDE; virtual bool UseInProcessPlugins() const OVERRIDE; + virtual void AddBindings(int bindings) OVERRIDE; + virtual int GetEnabledBindings() const OVERRIDE; virtual bool HasInitializedMediaLibrary() const; private: uint32 transport_dib_next_sequence_number_; + int enabled_bindings_; DISALLOW_COPY_AND_ASSIGN(MockRenderProcess); }; |