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

Side by Side Diff: Source/core/editing/EditingTestBase.h

Issue 1304363008: [Editing][CodeHealth] remove default argument 'host' in EditingTestBase::setShadowContent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 3 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 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 EditingTestBase_h 5 #ifndef EditingTestBase_h
6 #define EditingTestBase_h 6 #define EditingTestBase_h
7 7
8 #include "core/editing/Position.h" 8 #include "core/editing/Position.h"
9 #include "wtf/Forward.h" 9 #include "wtf/Forward.h"
10 #include <gtest/gtest.h> 10 #include <gtest/gtest.h>
11 11
12 namespace blink { 12 namespace blink {
13 13
14 class DummyPageHolder; 14 class DummyPageHolder;
15 15
16 class EditingTestBase : public ::testing::Test { 16 class EditingTestBase : public ::testing::Test {
17 WTF_MAKE_FAST_ALLOCATED(EditingTestBase); 17 WTF_MAKE_FAST_ALLOCATED(EditingTestBase);
18 protected: 18 protected:
19 EditingTestBase(); 19 EditingTestBase();
20 ~EditingTestBase() override; 20 ~EditingTestBase() override;
21 21
22 void SetUp() override; 22 void SetUp() override;
23 23
24 Document& document() const; 24 Document& document() const;
25 25
26 static PassRefPtrWillBeRawPtr<ShadowRoot> createShadowRootForElementWithIDAn dSetInnerHTML(TreeScope&, const char* hostElementID, const char* shadowRootConte nt); 26 static PassRefPtrWillBeRawPtr<ShadowRoot> createShadowRootForElementWithIDAn dSetInnerHTML(TreeScope&, const char* hostElementID, const char* shadowRootConte nt);
27 27
28 void setBodyContent(const char*); 28 void setBodyContent(const char*);
29 PassRefPtrWillBeRawPtr<ShadowRoot> setShadowContent(const char* shadowConten t, const char* host = "host"); 29 PassRefPtrWillBeRawPtr<ShadowRoot> setShadowContent(const char* shadowConten t, const char* shadowHostId);
30 void updateLayoutAndStyleForPainting(); 30 void updateLayoutAndStyleForPainting();
31 31
32 private: 32 private:
33 OwnPtr<DummyPageHolder> m_dummyPageHolder; 33 OwnPtr<DummyPageHolder> m_dummyPageHolder;
34 }; 34 };
35 35
36 } // namespace blink 36 } // namespace blink
37 37
38 #endif // EditingTestBase_h 38 #endif // EditingTestBase_h
OLDNEW
« no previous file with comments | « Source/core/editing/EditingStrategyTest.cpp ('k') | Source/core/editing/EditingUtilitiesTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698