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

Side by Side Diff: Source/core/testing/Internals.h

Issue 66383005: Remove the concept of user stylesheets. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix WebFrameCSSCallbackTest tests Created 7 years, 1 month 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 | « Source/core/page/Settings.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 228
229 String scrollingStateTreeAsText(Document*, ExceptionState&) const; 229 String scrollingStateTreeAsText(Document*, ExceptionState&) const;
230 String mainThreadScrollingReasons(Document*, ExceptionState&) const; 230 String mainThreadScrollingReasons(Document*, ExceptionState&) const;
231 PassRefPtr<ClientRectList> nonFastScrollableRects(Document*, ExceptionState& ) const; 231 PassRefPtr<ClientRectList> nonFastScrollableRects(Document*, ExceptionState& ) const;
232 232
233 void garbageCollectDocumentResources(Document*, ExceptionState&) const; 233 void garbageCollectDocumentResources(Document*, ExceptionState&) const;
234 void evictAllResources() const; 234 void evictAllResources() const;
235 235
236 void allowRoundingHacks() const; 236 void allowRoundingHacks() const;
237 237
238 void insertAuthorCSS(Document*, const String&) const;
239 void insertUserCSS(Document*, const String&) const;
240
241 unsigned numberOfLiveNodes() const; 238 unsigned numberOfLiveNodes() const;
242 unsigned numberOfLiveDocuments() const; 239 unsigned numberOfLiveDocuments() const;
243 Vector<String> consoleMessageArgumentCounts(Document*) const; 240 Vector<String> consoleMessageArgumentCounts(Document*) const;
244 PassRefPtr<DOMWindow> openDummyInspectorFrontend(const String& url); 241 PassRefPtr<DOMWindow> openDummyInspectorFrontend(const String& url);
245 void closeDummyInspectorFrontend(); 242 void closeDummyInspectorFrontend();
246 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u nsigned long maxDeadBytes, unsigned long totalBytes); 243 Vector<unsigned long> setMemoryCacheCapacities(unsigned long minDeadBytes, u nsigned long maxDeadBytes, unsigned long totalBytes);
247 void setInspectorResourcesDataSizeLimits(int maximumResourcesContentSize, in t maximumSingleResourceContentSize, ExceptionState&); 244 void setInspectorResourcesDataSizeLimits(int maximumResourcesContentSize, in t maximumSingleResourceContentSize, ExceptionState&);
248 245
249 String counterValue(Element*); 246 String counterValue(Element*);
250 247
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 RefPtr<DOMWindow> m_frontendWindow; 307 RefPtr<DOMWindow> m_frontendWindow;
311 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; 308 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel;
312 RefPtr<InternalRuntimeFlags> m_runtimeFlags; 309 RefPtr<InternalRuntimeFlags> m_runtimeFlags;
313 RefPtr<ScrollingCoordinator> m_scrollingCoordinator; 310 RefPtr<ScrollingCoordinator> m_scrollingCoordinator;
314 RefPtr<InternalProfilers> m_profilers; 311 RefPtr<InternalProfilers> m_profilers;
315 }; 312 };
316 313
317 } // namespace WebCore 314 } // namespace WebCore
318 315
319 #endif 316 #endif
OLDNEW
« no previous file with comments | « Source/core/page/Settings.cpp ('k') | Source/core/testing/Internals.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698