Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef COMPONENTS_PLUGINS_RENDERER_TEST_PLUGIN_PLACEHOLDER_H_ | |
| 6 #define COMPONENTS_PLUGINS_RENDERER_TEST_PLUGIN_PLACEHOLDER_H_ | |
| 7 | |
| 8 #include "components/plugins/renderer/plugin_placeholder.h" | |
| 9 | |
| 10 namespace plugins { | |
| 11 | |
| 12 // A subclass of PluginPlaceholder for use in Blink layout tests. | |
| 13 | |
|
tommycli
2015/05/26 20:08:18
No need for blank line here
chrishtr
2015/05/28 20:13:56
Done.
| |
| 14 class TestPluginPlaceholder : public PluginPlaceholder { | |
| 15 public: | |
|
tommycli
2015/05/26 20:08:18
formatting doesn't look right here. maybe git cl f
chrishtr
2015/05/28 20:13:56
Ran git cl format.
| |
| 16 TestPluginPlaceholder(blink::WebLocalFrame* frame, | |
| 17 const blink::WebPluginParams& params); | |
| 18 }; | |
| 19 | |
| 20 } // namespace plugins | |
| 21 | |
| 22 #endif // COMPONENTS_PLUGINS_RENDERER_TEST_PLUGIN_PLACEHOLDER_H_ | |
| OLD | NEW |