/external/chromium_org/chrome/browser/ |
user_style_sheet_watcher.h | 21 // Watches the user style sheet file and triggers reloads on the file thread 55 // Watches for changes to the css file so we can reload the style sheet.
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSFontFaceRule.h | 35 static PassRefPtr<CSSFontFaceRule> create(StyleRuleFontFace* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSFontFaceRule(rule, sheet)); }
|
CSSHostRule.h | 32 static PassRefPtr<CSSHostRule> create(StyleRuleHost* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSHostRule(rule, sheet)); }
|
CSSPageRule.h | 36 static PassRefPtr<CSSPageRule> create(StyleRulePage* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSPageRule(rule, sheet)); }
|
CSSDefaultStyleSheets.cpp | 81 StyleSheetContents* sheet = StyleSheetContents::create(CSSParserContext(UASheetMode)).leakRef(); // leak the sheet on purpose local 82 sheet->parseString(str); 83 return sheet; 143 // No need to initialize quirks sheet yet as there are no quirk rules for elements allowed in simple default style. 163 // FIXME: We should assert that the sheet only styles SVG elements. 171 // FIXME: We should assert that this sheet only contains rules for <video> and <audio>.
|
CSSFilterRule.h | 43 static PassRefPtr<CSSFilterRule> create(StyleRuleFilter* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSFilterRule(rule, sheet)); }
|
CSSImportRule.h | 36 static PassRefPtr<CSSImportRule> create(StyleRuleImport* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSImportRule(rule, sheet)); }
|
CSSMediaRule.h | 35 static PassRefPtr<CSSMediaRule> create(StyleRuleMedia* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSMediaRule(rule, sheet)); }
|
CSSRegionRule.h | 42 static PassRefPtr<CSSRegionRule> create(StyleRuleRegion* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSRegionRule(rule, sheet)); }
|
CSSStyleRule.h | 35 static PassRefPtr<CSSStyleRule> create(StyleRule* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSStyleRule(rule, sheet)); }
|
CSSSupportsRule.h | 41 static PassRefPtr<CSSSupportsRule> create(StyleRuleSupports* rule, CSSStyleSheet* sheet) 43 return adoptRef(new CSSSupportsRule(rule, sheet));
|
/external/chromium/chrome/browser/ |
user_style_sheet_watcher.cc | 16 // The subdirectory of the profile that contains the style sheet. 23 // UserStyleSheetLoader is responsible for loading the user style sheet on the 24 // file thread and sends a notification when the style sheet is loaded. It is 50 // Load the user style sheet on the file thread and convert it to a 64 // The user style sheet as a base64 data:// URL. 92 // We keep the user style sheet in a subdir so we can watch for changes 133 // the user style sheet.
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DocumentStyleSheetCollection.cpp | 121 // Parse the sheet and cache it. 172 const UserStyleSheet* sheet = sheets[i].get(); local 173 if (sheet->injectedFrames() == InjectInTopFrameOnly && m_document->ownerElement()) 175 if (!UserContentURLPattern::matchesPatterns(m_document->url(), sheet->whitelist(), sheet->blacklist())) 177 RefPtr<CSSStyleSheet> groupSheet = CSSStyleSheet::createInline(const_cast<Document*>(m_document), sheet->url()); 178 bool isUserStyleSheet = sheet->level() == UserStyleUserLevel; 184 groupSheet->contents()->parseString(sheet->source()); 213 // Make sure we knew this sheet was pending, and that our count isn't out of sync.
|
ProcessingInstruction.h | 48 StyleSheet* sheet() const { return m_sheet.get(); } function in class:WebCore::FINAL 72 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet); 78 void parseStyleSheet(const String& sheet);
|
/external/chromium/chrome/browser/ui/cocoa/content_settings/ |
collected_cookies_mac.mm | 44 #pragma mark Bridge between the constrained window delegate and the sheet 46 // The delegate used to forward the events from the sheet to the constrained 52 - (void)sheetDidEnd:(NSWindow*)sheet 65 - (void)sheetDidEnd:(NSWindow*)sheet 68 collectedCookies_->OnSheetDidEnd(sheet); 115 void CollectedCookiesMac::OnSheetDidEnd(NSWindow* sheet) { 116 [sheet orderOut:sheet_controller_]; 450 NSWindow* sheet = [self window]; 451 NSRect sheetFrame = [sheet frame]; 462 // Calculate the new position of the sheet [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/ |
certificate_viewer_mac_browsertest.mm | 54 // Test that switching to another tab correctly hides the sheet. 71 // Switch to another tab and verify that the sheet is hidden. 77 // Switch back and verify that the sheet is shown.
|
constrained_web_dialog_delegate_mac.mm | 111 // Create a window to hold web_contents in the constrained sheet: 122 base::scoped_nsobject<CustomConstrainedWindowSheet> sheet( 125 this, web_contents, sheet));
|
ssl_client_certificate_selector_cocoa_browsertest.mm | 73 // Test that switching to another tab correctly hides the sheet. 89 // Switch to another tab and verify that the sheet is hidden. 95 // Switch back and verify that the sheet is shown.
|
login_prompt_cocoa.h | 12 // Controller of the sheet used by LoginHandlerMac. Interface Builder wants
|
/external/chromium_org/printing/ |
page_setup.h | 23 // Vertical space for the overlay from the top of the sheet. 25 // Vertical space for the overlay from the bottom of the sheet. 27 // Margin on each side of the sheet.
|
/external/chromium_org/chrome/browser/ui/cocoa/tabs/ |
tab_projecting_image_view.h | 15 // three images: background image (original favicon), projector sheet and an
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
platform_app.css | 6 * A style sheet for Chrome apps.
|
/external/chromium_org/chrome_frame/cfinstall/src/miniclosure/ |
style.js | 10 * Creates a style sheet in the document containing the passed rules.
|
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XSLImportRule.cpp | 51 void XSLImportRule::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) 62 m_styleSheet->parseString(sheet); 107 // If the imported sheet is in the cache, then setXSLStyleSheet gets called, 108 // and the sheet even gets parsed (via parseString). In this case we have
|
/external/chromium_org/chrome/browser/ui/cocoa/extensions/ |
extension_install_dialog_controller.mm | 49 base::scoped_nsobject<CustomConstrainedWindowSheet> sheet( 52 this, show_params.parent_web_contents, sheet));
|