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

Unified Diff: third_party/WebKit/Source/core/dom/StyleEngineContext.h

Issue 2203993002: Add a Physical Web omnibox autocomplete provider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: oops, wrong CL Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/dom/StyleEngineContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/StyleEngineContext.h
diff --git a/third_party/WebKit/Source/core/dom/StyleEngineContext.h b/third_party/WebKit/Source/core/dom/StyleEngineContext.h
index 79188c24f87241008731758118c102d984ecab23..bc680098ac3488edd7d75ee921e03a00fb3a6c09 100644
--- a/third_party/WebKit/Source/core/dom/StyleEngineContext.h
+++ b/third_party/WebKit/Source/core/dom/StyleEngineContext.h
@@ -9,12 +9,12 @@
namespace blink {
-class StyleEngineContext {
+class CORE_EXPORT StyleEngineContext {
public:
- StyleEngineContext() : m_addedPendingSheetBeforeBody(false) {}
+ StyleEngineContext();
~StyleEngineContext() {}
bool addedPendingSheetBeforeBody() const { return m_addedPendingSheetBeforeBody; }
- void addingPendingSheet(const Document& document) { m_addedPendingSheetBeforeBody = m_addedPendingSheetBeforeBody || !document.body(); }
+ void addingPendingSheet(const Document&);
private:
bool m_addedPendingSheetBeforeBody : 1;
};
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/dom/StyleEngineContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698