Questions tagged [chromium-tabs]

Chromium Tabs is an open source Cocoa framework for building applications that work like the Chrome or Chromium browser window systems.

Chromium Tabs is an open source Cocoa framework for building applications that work like the Chrome or Chromium browser window systems.

Features:

  • An application has multiple windows
  • Each window represents a unit of tabs
  • Each tab represents a stateful view
  • Each tab can be freely dragged between windows

Resources:

4 questions
4
votes
4 answers

How to do a CEF window refresh?

I have an app with 2 tabs. The container of app is developed in Native code and CEF has been used to open html pages in one of the tabs. When I switch from Tab 1 (Native) to Tab 2(CEF) contents of Tab 1 are visible on Tab 2, though Tab 2 has html…
Abhimanyu Vohra
  • 41
  • 1
  • 1
  • 4
1
vote
0 answers

Uses of Summery view and Containment view in Heap snapshot

I was learning to on how to snapshot of javascript heap memory and I came across 2 terms "Summery View" and "Containment view". The definition provided by there documentation is not clear and doesn't helps in understanding there usage Can any one…
1
vote
0 answers

Chromium tabs – can't update tab icon

I'm trying out chromium-tabs. I have an issue where the icon of a tab never gets properly updated after it gets created for the first time. In my CTTabContents subclass, I have: - (void)tabDidBecomeSelected { NSLog(@"selected"); [self…
houbysoft
  • 32,532
  • 24
  • 103
  • 156
0
votes
1 answer

how to capture screen shot of packaged app in chrome browser?

we are developing some packaged app on chromium os... and the requirement is to capture the screen shot of my packaged app gui... there is no chrome api in chrome apps to capture it from app itself... but there is an api chrome.tab.captureVisibleTab…