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

Side by Side Diff: Source/testing/runner/TestRunner.h

Issue 23190034: Remove code related to title directionality, we never used it (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 4 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
« no previous file with comments | « Source/core/svg/SVGTitleElement.cpp ('k') | Source/testing/runner/TestRunner.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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Pawel Hajdan (phajdan.jr@chromium.org) 3 * Copyright (C) 2010 Pawel Hajdan (phajdan.jr@chromium.org)
4 * Copyright (C) 2012 Apple Inc. All Rights Reserved. 4 * Copyright (C) 2012 Apple Inc. All Rights Reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * * Redistributions of source code must retain the above copyright 10 * * Redistributions of source code must retain the above copyright
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 bool shouldDumpIconChanges() const; 107 bool shouldDumpIconChanges() const;
108 bool shouldDumpCreateView() const; 108 bool shouldDumpCreateView() const;
109 bool canOpenWindows() const; 109 bool canOpenWindows() const;
110 bool shouldDumpResourceLoadCallbacks() const; 110 bool shouldDumpResourceLoadCallbacks() const;
111 bool shouldDumpResourceRequestCallbacks() const; 111 bool shouldDumpResourceRequestCallbacks() const;
112 bool shouldDumpResourceResponseMIMETypes() const; 112 bool shouldDumpResourceResponseMIMETypes() const;
113 bool shouldDumpStatusCallbacks() const; 113 bool shouldDumpStatusCallbacks() const;
114 bool shouldDumpProgressFinishedCallback() const; 114 bool shouldDumpProgressFinishedCallback() const;
115 bool deferMainResourceDataLoad() const; 115 bool deferMainResourceDataLoad() const;
116 bool shouldStayOnPageAfterHandlingBeforeUnload() const; 116 bool shouldStayOnPageAfterHandlingBeforeUnload() const;
117 void setTitleTextDirection(WebKit::WebTextDirection);
118 const std::set<std::string>* httpHeadersToClear() const; 117 const std::set<std::string>* httpHeadersToClear() const;
119 void setTopLoadingFrame(WebKit::WebFrame*, bool); 118 void setTopLoadingFrame(WebKit::WebFrame*, bool);
120 WebKit::WebFrame* topLoadingFrame() const; 119 WebKit::WebFrame* topLoadingFrame() const;
121 void policyDelegateDone(); 120 void policyDelegateDone();
122 bool policyDelegateEnabled() const; 121 bool policyDelegateEnabled() const;
123 bool policyDelegateIsPermissive() const; 122 bool policyDelegateIsPermissive() const;
124 bool policyDelegateShouldNotifyDone() const; 123 bool policyDelegateShouldNotifyDone() const;
125 bool shouldInterceptPostMessage() const; 124 bool shouldInterceptPostMessage() const;
126 bool shouldDumpResourcePriorities() const; 125 bool shouldDumpResourcePriorities() const;
127 #if ENABLE_NOTIFICATIONS 126 #if ENABLE_NOTIFICATIONS
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 WorkQueue m_workQueue; 565 WorkQueue m_workQueue;
567 566
568 WebKit::WebURL m_userStyleSheetLocation; 567 WebKit::WebURL m_userStyleSheetLocation;
569 568
570 // globalFlag is used by a number of layout tests in http/tests/security/dat aURL. 569 // globalFlag is used by a number of layout tests in http/tests/security/dat aURL.
571 CppVariant m_globalFlag; 570 CppVariant m_globalFlag;
572 571
573 // Bound variable to return the name of this platform (chromium). 572 // Bound variable to return the name of this platform (chromium).
574 CppVariant m_platformName; 573 CppVariant m_platformName;
575 574
576 // Bound variable tracking the directionality of the <title> tag.
577 CppVariant m_titleTextDirection;
578
579 // Bound variable counting the number of top URLs visited. 575 // Bound variable counting the number of top URLs visited.
580 CppVariant m_webHistoryItemCount; 576 CppVariant m_webHistoryItemCount;
581 577
582 // Bound variable to set whether postMessages should be intercepted or not 578 // Bound variable to set whether postMessages should be intercepted or not
583 CppVariant m_interceptPostMessage; 579 CppVariant m_interceptPostMessage;
584 580
585 // Bound variable to store the last tooltip text 581 // Bound variable to store the last tooltip text
586 CppVariant m_tooltipText; 582 CppVariant m_tooltipText;
587 583
588 // Bound variable to disable notifyDone calls. This is used in GC leak 584 // Bound variable to disable notifyDone calls. This is used in GC leak
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 enum { 709 enum {
714 PointerLockWillSucceed, 710 PointerLockWillSucceed,
715 PointerLockWillRespondAsync, 711 PointerLockWillRespondAsync,
716 PointerLockWillFailSync, 712 PointerLockWillFailSync,
717 } m_pointerLockPlannedResult; 713 } m_pointerLockPlannedResult;
718 }; 714 };
719 715
720 } 716 }
721 717
722 #endif // TestRunner_h 718 #endif // TestRunner_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGTitleElement.cpp ('k') | Source/testing/runner/TestRunner.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698