WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
131453
Update SPI for managing tabs
https://bugs.webkit.org/show_bug.cgi?id=131453
Summary
Update SPI for managing tabs
Gavin Barraclough
Reported
2014-04-09 14:26:25 PDT
.
Attachments
Fix
(11.83 KB, patch)
2014-04-09 14:32 PDT
,
Gavin Barraclough
ap
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Gavin Barraclough
Comment 1
2014-04-09 14:32:42 PDT
Created
attachment 228983
[details]
Fix
Alexey Proskuryakov
Comment 2
2014-04-09 15:01:15 PDT
Comment on
attachment 228983
[details]
Fix View in context:
https://bugs.webkit.org/attachment.cgi?id=228983&action=review
Python script changes in the patch seem unrelated.
> Source/WebKit2/UIProcess/WebProcessProxy.h:226 > + bool m_foreground;
I think that "m_assertionFlagsAreForeground" would be a more descriptive name for this. Or perhaps we can ask m_assertion about whether it's taken?
> Source/WebKit2/UIProcess/ios/WebProcessProxyIOS.mm:35 > +#define BACKGROUND_TAB_FLAGS (BKSProcessAssertionAllowIdleSleep) > +#define FOREGROUND_TAB_FLAGS (BKSProcessAssertionAllowIdleSleep | BKSProcessAssertionPreventTaskSuspend | BKSProcessAssertionWantsForegroundResourcePriority | BKSProcessAssertionPreventTaskThrottleDown)
I'd use a const, not a #define.
> Source/WebKit2/UIProcess/ios/WebProcessProxyIOS.mm:100 > + LOG_ERROR("Unable to aquire assertion for WebContent process %d", pid);
Typo: aquire.
> Source/WebKit2/UIProcess/ios/WebProcessProxyIOS.mm:104 > + m_assertion = [[BKSProcessAssertion alloc] initWithPID:pid flags:flags reason:BKSProcessAssertionReasonExtension name:@"Web content visible" withHandler:handler];
This leaks, please use adoptNS().
Gavin Barraclough
Comment 3
2014-04-09 15:13:36 PDT
Transmitting file data .... Committed revision 167039.
mitz
Comment 4
2014-04-09 21:10:36 PDT
(In reply to
comment #2
)
> (From update of
attachment 228983
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=228983&action=review
> > Python script changes in the patch seem unrelated. > > > Source/WebKit2/UIProcess/WebProcessProxy.h:226 > > + bool m_foreground; > > I think that "m_assertionFlagsAreForeground" would be a more descriptive name for this. > > Or perhaps we can ask m_assertion about whether it's taken? > > > Source/WebKit2/UIProcess/ios/WebProcessProxyIOS.mm:35 > > +#define BACKGROUND_TAB_FLAGS (BKSProcessAssertionAllowIdleSleep) > > +#define FOREGROUND_TAB_FLAGS (BKSProcessAssertionAllowIdleSleep | BKSProcessAssertionPreventTaskSuspend | BKSProcessAssertionWantsForegroundResourcePriority | BKSProcessAssertionPreventTaskThrottleDown) > > I'd use a const, not a #define.
…and constants should be named like local variables, starting with a lowercase letter.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug