[chromium-dev] Re: Where is the code which chromium display the loading status

2009-06-02 Thread Nico Weber
Hi Daniel, most strings are in app/generated_resources.grd. Searching this file will tell you that the waiting... message has the symbolic name IDS_LOAD_STATE_WAITING_FOR_RESPONSE. http://google.com/codesearch?q=IDS_LOAD_STATE_WAITING_FOR_RESPONSE then tells you that this seems to happen in

[chromium-dev] Re: Fixing our keyboard handling act on OSX

2009-06-05 Thread Nico Weber
Hi, re Type ctrl-a on hebrew keyboard: On OS X, ctrl-a usually does not select all text (that's what cmd-a does) but goes to the beginning of the current line, as in emacs. But that can be overridden ( http://www.hcs.harvard.edu/~jrus/site/cocoa-text.html ). Nico 2009/6/5 Hironori Bono (坊野 博典)

[chromium-dev] Re: Is it possible to create branches?

2009-06-16 Thread Nico Weber
Use git-svn? See http://code.google.com/p/chromium/wiki/UsingGit . On Tue, Jun 16, 2009 at 9:35 PM, Daniel Cowxdaniel.c...@gmail.com wrote: What is the recommended procedure for working on long/big features? In the past, I've always created a separate branch and then done all my work there.

[chromium-dev] Re: how to judge layouttests' running result?

2009-06-25 Thread Nico Weber
I usually try to execute the regressing tests manually (most of the time by just open the html file in test shell, sometimes you have to start some local web server). If they pass, I tell myself that the test is just flaky. If they still fail, I start debugging. 2009/6/25 David Jones

[chromium-dev] Re: Knowing when a context menu is closed

2009-07-22 Thread Nico Weber
On mac, you can probably set the NSMenu's delegate to an object of your choice and have it implement menuDidClose: if you want to implement this yourself. On Wed, Jul 22, 2009 at 1:07 PM, Tommito...@chromium.org wrote: for Windows: http://msdn.microsoft.com/en-us/library/ms647599(VS.85).aspx

[chromium-dev] Re: 3.0.195.1 Released to Dev Channel

2009-07-22 Thread Nico Weber
http://src.chromium.org/viewvc/chrome/branches/195/src/DEPS?view=log On Wed, Jul 22, 2009 at 5:49 PM, Julie Parentjpar...@chromium.org wrote: What is the best way to figure out which WebKit revision this corresponds to?  Some of the older release notes were including that information in the

[chromium-dev] Re: Call for highlights to the 196.0 release notes

2009-07-30 Thread Nico Weber
Mac changes: * Trackpad scrolling on maps works again * First stab at history menu * Download shelf now has real download items * Lots of polish bugs (gradient between tabs and toolbar looks smooth again, double-clicking tabstrip to minimize works, app icon is slightly smaller, completion popups

[chromium-dev] Re: Call for highlights to the 196.0 release notes

2009-07-30 Thread Nico Weber
And another one for linux, by estade and me: Linux now has carpet bombing protection. Not too interesting, but since this counts as a security issue these days, you might want to mention it. On Thu, Jul 30, 2009 at 12:08 PM, Evan Martine...@chromium.org wrote: One more for Linux, then, since

[chromium-dev] Re: Call for highlights to the 196.0 release notes

2009-07-30 Thread Nico Weber
No, before it was treated as if the user always allowed it. Some file had a check that the download was denied if the dialog was NULL, but there's a stub dialog in temp_scaffoling_stubs that always pretends that the user clicks yes, so that check was never triggered. On Thu, Jul 30, 2009 at 2:35

[chromium-dev] `git pull` timeout

2009-07-31 Thread Nico Weber
Hi, `git pull` times out for me: thakis-macbookpro:~/src/chrome-git/src thakis$ git pull git.chromium.org[0: 74.125.54.202]: errno=Operation timed out fatal: unable to connect a socket (Operation timed out) thakis-macbookpro:~/src/chrome-git/src thakis$ ping 74.125.54.202 PING 74.125.54.202

[chromium-dev] Re: `git pull` timeout

2009-07-31 Thread Nico Weber
That fixed it, thanks. On Fri, Jul 31, 2009 at 2:14 PM, Evan Martine...@chromium.org wrote: On Fri, Jul 31, 2009 at 2:14 PM, Evan Martine...@chromium.org wrote: See the note on the page about if you're within the Google corporate network. the page =

[chromium-dev] Re: Font used in groups.google.com in Chromium on MacOSX

2009-08-08 Thread Nico Weber
https://bugs.webkit.org/show_bug.cgi?id=19161 I believe. On Sat, Aug 8, 2009 at 10:37 AM, Adam Barthaba...@chromium.org wrote: I believe Eric Seidel just fixed this bug.  He can tell you more. Adam On Sat, Aug 8, 2009 at 10:03 AM, n179911n179...@gmail.com wrote: Hi, I am using the

[chromium-dev] Re: Mac History Menu

2009-08-13 Thread Nico Weber
cmd-opt-h is used by the os too (cmd-h: hide current app, cmd-opt-h: hide others). On Thu, Aug 13, 2009 at 8:08 AM, Julian Harrisk...@google.com wrote: What about Cmd-Opt-H? On Wed, Aug 12, 2009 at 7:15 PM, Robert Sesek rse...@gmail.com wrote: Two things about the Mac history menu that I'd

[chromium-dev] Re: Mac History Menu

2009-08-13 Thread Nico Weber
Robert: How about grabbing a random person, setting them in front of chromium, telling them I need you to do some UX testing for me. This is about testing the program and not about testing you, you cannot do anything wrong. Up here we have the history menu. What would you expect what happens if

[chromium-dev] Re: Mac History Menu

2009-08-13 Thread Nico Weber
…and repeat 3 times, for each version gives you six opinions – and uninvolved opinions, too. On Thu, Aug 13, 2009 at 10:43 AM, Glen Murphyg...@chromium.org wrote: I think you'd need more than one person and twenty minutes. One person isn't going give you any useful data - this thread is full

[chromium-dev] Re: Can't edit others' codereviews?

2009-08-16 Thread Nico Weber
`git cl patch` reuses existing issues, so when landing stuff for other people, I used to edit the issue on codereview to add Patch by someone+usuallytru...@example.org before landing. So for me editing other people's issues is useful. On Sat, Aug 15, 2009 at 11:22 PM, John

[chromium-dev] Re: Updating a git repo?

2009-08-18 Thread Nico Weber
Shouldn't `git pull gclient sync` be sufficient? That's what http://code.google.com/p/chromium/wiki/UsingGit recommends, and what I use (although my git sometimes gets confused about svn, and I have to do `rm -rf .git/svn git svn fetch` every now and then). On Tue, Aug 18, 2009 at 7:54 PM,

[chromium-dev] Re: Omnibox highlighting and PRIMARY selection concerns

2009-08-20 Thread Nico Weber
Since everyone has their own opinions on this, isn't it best to just match platform standards? On Linux, that seems to be triple-click. On Thu, Aug 20, 2009 at 2:57 PM, James Hawkinsjhawk...@chromium.org wrote: On Thu, Aug 20, 2009 at 2:41 PM, Peter Kastingpkast...@chromium.org wrote: On Thu,

[chromium-dev] Re: Creating a SkBitmap filled with one color

2009-08-26 Thread Nico Weber
When I talked with Aaron, he said porting the shelf to OS X isn't something I should tackle unless I'm _really_ running out of things to do, since they're not even sure they're going to keep it. Has this changed, or is the situation different on linux for some reason? Nico On Wed, Aug 26, 2009

[chromium-dev] Re: Creating a SkBitmap filled with one color

2009-08-26 Thread Nico Weber
This code is incorrect, you should divide by 257, not 256.  See the GDK_COLOR_RGB macro. That's not true. GDK_COLOR_RGB multiplies by 257 (= 0x10001) to distribute the bits evenly ( http://www.mindcontrol.org/~hplus/graphics/expand-bits.html ). To get back, you can just shift (or, formulated

[chromium-dev] Git woes

2009-08-26 Thread Nico Weber
Trying to pull: thakis-macbookpro:~/src/chrome-git/src thakis$ git pull remote: Counting objects: 1859, done. remote: Compressing objects: 100% (1267/1267), done. remote: Total 1393 (delta 1087), reused 195 (delta 107) Receiving objects: 100% (1393/1393), 2.57 MiB | 781 KiB/s, done. fatal:

[chromium-dev] Re: Git woes

2009-08-27 Thread Nico Weber
in the path that where being called by others, the version mismatch was silent and caused this error. Have you upgraded to a new version of git recently that might cause such a mismatch? Best regards, Jeremy On Wed, Aug 26, 2009 at 10:42 PM, Nico Weber tha...@chromium.org wrote: Trying

[chromium-dev] Re: Git woes

2009-08-27 Thread Nico Weber
The pack file truncated theory sounds most likely. Is there any way I could tell git to regenerate the newest N packfiles? On Thu, Aug 27, 2009 at 8:00 AM, Evan Martine...@chromium.org wrote: https://kerneltrap.org/mailarchive/git/2007/7/23/252538 old and maybe obsolete, but has some

[chromium-dev] Re: Git woes

2009-08-27 Thread Nico Weber
Didn't help. Oh well, back to my fallback svn client for now. Will create a new git checkout in the new feature. On Thu, Aug 27, 2009 at 9:12 AM, Evan Martine...@chromium.org wrote: Try git gc On Thu, Aug 27, 2009 at 8:27 AM, Nico Webertha...@chromium.org wrote: The pack file truncated

[chromium-dev] Re: Git woes

2009-08-27 Thread Nico Weber
I accidentally fixed the problem by running something like rm -rf .git/svn/ git svn fetch; git merge trunk git merge refs/remotes/origin/trunk git checkout -f HEAD git pull . Not sure what fixed it, but pulling works again. Yay, I guess, but of course I fixed it about 2 minutes before

[chromium-dev] Re: How to run chrom automation test

2009-08-28 Thread Nico Weber
Most (all?) of the uitests are compiled into an executable called uitests. Use xcodebuild/Debug/ui_tests --gtest_print_time to list all test names, then do xcodebuild/Debug/ui_tests --gtest_filter=SavePageTest.SaveHTMLOnly to execute the test you want. ps: First hit when searching

[chromium-dev] Re: How to run chrom automation test

2009-08-28 Thread Nico Weber
. On Fri, Aug 28, 2009 at 9:03 AM, hap 497hap...@gmail.com wrote: Thank you. I ran the Automation UI test by  ./ui_tests --gtest_filter=Automation* Can you please tell me how can I run it in XCode so that I can debug/step thru each Test Case? On Fri, Aug 28, 2009 at 7:20 AM, Nico Weber tha

[chromium-dev] Re: Chromium core principles and multiplatform development?

2009-09-10 Thread Nico Weber
An external contributor was recently surprised that a change tested on linux was reverted because it broke the build on windows. (His mental model was that linux developers don't have to worry about other platforms, that's what windows developers are for.) [...] Anyone think we need

[chromium-dev] Re: Please stop hardcoding URLs everywhere

2009-09-13 Thread Nico Weber
A nice trick for finding if a constant string you're about to add already exists in the codebase is to use http://codesearch.google.com/.  For example, to find existing strings that start with javascript, you could use this query:

[chromium-dev] Re: Verdict: Menu string casing

2009-09-16 Thread Nico Weber
Hi Ben, We will not duplicate strings for any other reason unless they refer to a concept that does not exist on the relevant platform. The idea is that we should have a single set of string content (independent of casing) that documentation can refer to. at least in non-english languages,

[chromium-dev] Re: Verdict: Menu string casing

2009-09-16 Thread Nico Weber
Title Case is terrible. Can't understand why Mac would choose that. After all, why use Title Case on all things that are *not* titles ? Definitely should use Sentence case, even for Mac. After all they are sentences ! Personally I find Tile Case unreadable and I despise it. +1. We should

[chromium-dev] Re: Git questions

2009-09-18 Thread Nico Weber
BTW, do you typically have useful history on these branches? Typically the reason to preserve history is for commit logs (which we drop when we commit the branch as a squash) or for merges (which we're breaking because we're rebasing). It would be a lot faster if it could forward-port a

[chromium-dev] Re: Git questions

2009-09-18 Thread Nico Weber
, Sep 18, 2009 at 11:47 AM, Eric Seidel esei...@chromium.org wrote: For my use case: If there is more than one commit on a branch, then that is intentional history on my part. :)  So yes. -eric On Fri, Sep 18, 2009 at 11:45 AM, Nico Weber tha...@chromium.org wrote: BTW, do you typically have

[chromium-dev] Seeing a grey bar at the bottom of the 211 mac dev release? Read on.

2009-09-19 Thread Nico Weber
Hi, wondering why there's a grey, useless bar at the bottom of the latest mac dev release? It is not intentional, and is my fault – sorry. It will be gone again in next week's dev release. It was only active on trunk for a few hours, but this week's dev release was cut in that interval. If you

[chromium-dev] Re: Seeing a grey bar at the bottom of the 211 mac dev release? Read on.

2009-09-19 Thread Nico Weber
By the way: After resizing the window, you can hit cmd-shift-b twice to move the bar back to the bottom of the window. On Sat, Sep 19, 2009 at 11:01 AM, Nico Weber tha...@chromium.org wrote: Hi, wondering why there's a grey, useless bar at the bottom of the latest mac dev release

[chromium-dev] Pasteboards and the mac valgrind builder

2009-09-24 Thread Nico Weber
Hi, Chromium Mac (valgrind) and I just had a good time. The bot is green now, but some tests still finish as FAILED (they just don't leak). Most of them were in that state before my CL made me look into this. Most of the failing tests seem to be related to NSPasteboard. 1. Does the valgrind

[chromium-dev] Re: Pasteboards and the mac valgrind builder

2009-09-24 Thread Nico Weber
:21 AM, Nico Weber tha...@chromium.org wrote: Hi, Chromium Mac (valgrind) and I just had a good time. The bot is green now, but some tests still finish as FAILED (they just don't leak). Most of them were in that state before my CL made me look into this. Most of the failing tests seem

[chromium-dev] Re: Question about UI and classic views

2009-09-25 Thread Nico Weber
At times, we seem to forget the impact of our silent updates.  They are great for bug/security fixes, but when we do roll out something like NNTP, it can lead to a 'WTF' moment.  For future changes like this, it might make sense to put in messaging for the upgrade so the users get lead

[chromium-dev] Re: Question about UI and classic views

2009-09-25 Thread Nico Weber
On Fri, Sep 25, 2009 at 10:24 AM, Darin Fisher da...@chromium.org wrote: On Fri, Sep 25, 2009 at 10:22 AM, Nico Weber tha...@chromium.org wrote: At times, we seem to forget the impact of our silent updates.  They are great for bug/security fixes, but when we do roll out something like

[chromium-dev] Re: SVN hangs updating third_party/WebKit

2009-09-25 Thread Nico Weber
http://groups.google.com/group/chromium-dev/browse_thread/thread/64a19a5f78db8fba I had the impression that removing that folder once is enough, though I didn't try it more than once yet. On Fri, Sep 25, 2009 at 5:18 PM, Finnur Thorarinsson fin...@chromium.org wrote: At first I thought it was

[chromium-dev] Re: buildbot failure in Chromium on XP Tests, revision 27312

2009-09-25 Thread Nico Weber
Looks like a grid change wasn't picked up, should go away after clobbering. On Fri, Sep 25, 2009 at 6:33 PM, build...@chromium.org wrote: http://build.chromium.org/buildbot/waterfall/ Automatically closing tree for unit_tests on XP Tests

[chromium-dev] Re: Chrome Keyboard Access, opinions?

2009-09-29 Thread Nico Weber
FWIW, on OS X there's a system setting for Tab cycles through everything or just important things in sysprefs-accessibility (I think. Not at my mac right now). On Tue, Sep 29, 2009 at 10:25 AM, Scott Violet s...@chromium.org wrote: On Tue, Sep 29, 2009 at 10:16 AM, Peter Kasting

[chromium-dev] Re: Reminder: File bugs for behavior changes on different platforms!

2009-10-20 Thread Nico Weber
, CA On Tue, Oct 20, 2009 at 11:30 AM, Nico Weber tha...@chromium.org wrote: In the blockee, enter the blockers in the Blocked by line at the bottom. On Tue, Oct 20, 2009 at 11:21 AM, Aaron Boodman a...@chromium.org wrote: On Tue, Oct 20, 2009 at 11:16 AM, Ben Goodger (Google) b

[chromium-dev] Re: compile error on Snow Leopard

2009-10-24 Thread Nico Weber
Sorry 'bout that. FIxing. On Sat, Oct 24, 2009 at 11:33 AM, Mark Mentovai m...@chromium.org wrote: thakis r29990 (http://codereview.chromium.org/336001) -[NSString stringWithCString:] is deprecated as of Mac OS X 10.4.  The replacement is -[NSString stringWithCString:encoding:]. We also

[chromium-dev] Re: compile error on Snow Leopard

2009-10-24 Thread Nico Weber
Done. Is SL a supported platform for building? If so, should we have an SL buildbot? On Sat, Oct 24, 2009 at 11:39 AM, Nico Weber tha...@chromium.org wrote: Sorry 'bout that. FIxing. On Sat, Oct 24, 2009 at 11:33 AM, Mark Mentovai m...@chromium.org wrote: thakis r29990 (http

[chromium-dev] Re: How can we kill scons?

2009-10-28 Thread Nico Weber
FWIW, I build with scons. I only build Linux once a month or so, and the default build instructions told me to use scons. I'd imagine lots of people who are just playing with chrome on the side use scons too. On Wed, Oct 28, 2009 at 12:28 PM, Albert J. Wong (王重傑) ajw...@chromium.org wrote: If

[chromium-dev] Re: Why is Linux Chrome so fast?

2009-10-28 Thread Nico Weber
On Wed, Oct 28, 2009 at 1:10 PM, Elliot Glaysher (Chromium) e...@chromium.org wrote: On Wed, Oct 28, 2009 at 12:24 PM, Antoine Labour pi...@google.com wrote: For the UI bits, I'm willing to believe that GTK, which uses cairo, hence XRender for rendering, is hardware accelerated and in any

[chromium-dev] BUILT_PRODUCTS_DIR: command not found build error on OS X

2009-11-01 Thread Nico Weber
Hi, when building after syncing, I now get /Users/thakis/src/chrome-git/src/chrome/../xcodebuild/chrome.build/Debug/chrome.build/Script-649B47660F26D59AE4D7EEA0.sh: line 2: BUILT_PRODUCTS_DIR: command not found every time. If you get this too, it can be fixed by going to

[chromium-dev] Re: Which editor do you recommend on Mac OS X?

2009-11-03 Thread Nico Weber
I heartily recommend MacVim ( http://code.google.com/p/macvim/ ). I hear its fullscreen mode is pretty rad :-P Having said that, XCode – like most OS X apps – support some emacs keybindings. Your Remove entire line example is ctrl-a ctrl-k ctrl-k in XCode. I usually use some mix of MacVim and

[chromium-dev] Re: Reverting a change, the fast way

2009-11-03 Thread Nico Weber
I tried that a few days ago, and drover died with me with something along the lines of Can't talk to chrome-svn (which as far as I understand is some internal svn repo?). A quick glance at the source confirms that this is still the case. On Tue, Nov 3, 2009 at 1:53 PM, Nicolas Sylvain

[chromium-dev] Re: Which editor do you recommend on Mac OS X?

2009-11-04 Thread Nico Weber
Thanks for all answers! I think I'll use CarbonEmacs for editing (it's great, my entire .emacs finally works) and Xcode for compiling. Aquamacs just landed in the trash. It's nice that Xcode supports some Emacs keybindings - I didn't know that. That's a feature of OS X, these keybindings

[chromium-dev] Re: test_shell performance is bad compared to Chromium

2009-11-05 Thread Nico Weber
http://codereview.chromium.org/244003/show might be what you want. On Thu, Nov 5, 2009 at 1:44 PM, Alexander Teinum atei...@gmail.com wrote: I could probably hack it so that it went into fullscreen, and then disable F11, but that's dirty. All the UI stuff from Chromium would still be there,

[chromium-dev] Re: test_shell performance is bad compared to Chromium

2009-11-05 Thread Nico Weber
at 10:51 PM, Nico Weber tha...@chromium.org wrote: http://codereview.chromium.org/244003/show might be what you want. On Thu, Nov 5, 2009 at 1:44 PM, Alexander Teinum atei...@gmail.com wrote: I could probably hack it so that it went into fullscreen, and then disable F11, but that's dirty. All

[chromium-dev] Multiple constrained windows

2009-11-07 Thread Nico Weber
Hi, some pages try to show multiple http auth dialogs at the same time ( one example is in http://crbug.com/26900 ). On linux, that happens to work fine, but on OS X it doesn't. I could change the OS X code to queue constrained windows and show only one window at a time per tab, or I could do

[chromium-dev] Re: Multiple constrained windows

2009-11-08 Thread Nico Weber
the backend tells the frontend to display, not about changing the backend code :-) On Sat, Nov 7, 2009 at 10:23 PM, Ben Goodger (Google) b...@chromium.org wrote: How is it implemented now? -Ben On Sat, Nov 7, 2009 at 10:18 PM, Nico Weber tha...@chromium.org wrote: Hi, some pages try to show

[chromium-dev] Re: German Translation

2009-11-08 Thread Nico Weber
Hi Frank, On Sun, Nov 8, 2009 at 3:45 AM, le.transport...@gmail.com le.transport...@gmail.com wrote: I'd like to participate and help translate all kinds of text (UI, FAQs etc.) into German. Please tell me how to. thanks for the offer. However, chromium doesn't use community-contributed

[chromium-dev] Re: how to debug in webkit

2009-11-09 Thread Nico Weber
That's because webkit runs in the renderer process and your debugger is attached to the browser process. See http://www.chromium.org/developers/how-tos/debugging . On Mon, Nov 9, 2009 at 7:03 PM, DavidZhang dreamst...@gmail.com wrote: Hi all:  I have complied the chrome source,but when i set

[chromium-dev] Need help from IME experts

2009-11-13 Thread Nico Weber
Hi, I would appreciate if folks with IME experience could comment on https://bugs.webkit.org/show_bug.cgi?id=31502 . Thanks, Nico ps: If similar mails like this one are sent to, please ignore them. Gmail or groups is acting up. -- Chromium Developers mailing list:

[chromium-dev] CGAccessSessionSkipBytes

2009-11-19 Thread Nico Weber
Hi, my new ToT chrome mac build logs this on the console: Thu Nov 19 22:39:53 thakis-macbookpro.local Chromium Helper[35086] Error: The function `CGAccessSessionSkipBytes' is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this

Re: [chromium-dev] SQLite compression in history database.

2009-11-24 Thread Nico Weber
On Tue, Nov 24, 2009 at 10:21 AM, Elliot Glaysher (Chromium) e...@chromium.org wrote: I'm all for it. I vaguely remember people complaining about the size of our history files, and most of my history files are over 50M. Part of the reason for this are bugs like

Re: [chromium-dev] Re: Building chromium for arm--erroring out

2009-12-07 Thread Nico Weber
No, I believe the correct way is va_list ap; va_start(ap, msg); std::string str; StringAppendV(result, format, ap); va_end(ap); XmlReader* reader = static_castXmlReader*(context); reader-errors_.append(str); Weird that there's no StringPrintV() in string_util. On Mon, Dec 7, 2009 at

Re: [chromium-dev] Re: Exposing Chrome Extensions APIs to DOM UI.

2009-12-15 Thread Nico Weber
(and again from right address) Since snej is writing a native bookmark manager on OS X that is done this week from what I understand, it seems like there is no need for a rush here. If you think the more involved solution is better, it might be worth doing. On Tue, Dec 15, 2009 at 8:01 AM, Nico

Re: [chromium-dev] [WebGL] Recommending --no-sandbox

2009-12-30 Thread Nico Weber
I thought there were two separate issues here: 1.) The specific webgl switch. Darin suggested that it should imply --disable-sandbox until webgl works in the sandbox. This way, people don't have to add --disable-sandbox explicitly and will automatically be safe once webgl works in the sandbox.

Re: [chromium-dev] jail tag to prevent javascript execution

2010-01-04 Thread Nico Weber
On Mon, Jan 4, 2010 at 6:09 AM, Mathias Wagner wolfsb...@googlemail.com wrote: Hello, I am a student of computer science and want to implement a jail for java-script or at least gather some information how one could do that. The idea is not new. Brandon Eich had it before. So the idea is to

[chromium-dev] Where does documentation intended for non-developers go?

2010-01-07 Thread Nico Weber
Hi, I wrote up a document that's relevant not only for people working on chromium, but for (small parts of) the world in general (under which circumstances does google chrome display idn urls as punycode? I mean, who's not dying to know?). Where do documents like these go? Nico -- Chromium

Re: [chromium-dev] Where does documentation intended for non-developers go?

2010-01-07 Thread Nico Weber
On Thu, Jan 7, 2010 at 5:31 PM, Evan Martin e...@chromium.org wrote: On Thu, Jan 7, 2010 at 2:31 PM, Nico Weber tha...@chromium.org wrote: I wrote up a document that's relevant not only for people working on chromium, but for (small parts of) the world in general (under which circumstances

Re: [chromium-dev] Where does documentation intended for non-developers go?

2010-01-08 Thread Nico Weber
On Fri, Jan 8, 2010 at 9:58 AM, Evan Martin e...@chromium.org wrote: On Thu, Jan 7, 2010 at 7:44 PM, Nico Weber tha...@chromium.org wrote: On Thu, Jan 7, 2010 at 5:31 PM, Evan Martin e...@chromium.org wrote: On Thu, Jan 7, 2010 at 2:31 PM, Nico Weber tha...@chromium.org wrote: I wrote up

Re: [chromium-dev] Process Model Extension API Proposal

2010-01-12 Thread Nico Weber
(re-sending from chromium address) On Tue, Jan 12, 2010 at 12:44 PM, James Robinson jam...@google.com wrote: Getting this information in a cross-platform way is a huge pain (do we even do it properly for mac yet?), Yes, since yesterday (at least most of it). Note that some of the memory

Re: [chromium-dev] Keyboard codes to use for a chrome extension api that enables automation?

2010-01-14 Thread Nico Weber
It probably depends if you want to use this for text input or action inputs. A text-to-speech extension would probably want to set unicode characters, while something that (say) hits cmd-f to open the find bar probably wants to use keycodes. For example, on OS X hitting cmd-f with a hiragana

Re: [chromium-dev] Keyboard codes to use for a chrome extension api that enables automation?

2010-01-14 Thread Nico Weber
On Thu, Jan 14, 2010 at 8:37 AM, Dominic Mazzoni dmazz...@google.com wrote: On Thu, Jan 14, 2010 at 8:19 AM, Nico Weber tha...@google.com wrote: It probably depends if you want to use this for text input or action inputs. A text-to-speech extension would probably want to set unicode characters

Re: [chromium-dev] License implications on Chromium's design

2010-01-18 Thread Nico Weber
http://lmgtfy.com/?q=chromium+license First hit. On Mon, Jan 18, 2010 at 3:07 PM, Jerome Leclanche adys...@gmail.com wrote: Hi people I'm currently writing an IM client in C++ with Qt. I'm basing the entire UI strongly upon the Chromium philosophy - tabs on top, no menus, one global url bar,