[chromium-dev] Re: Getting Started with a New Project

2009-07-27 Thread Juan Baez
, 2009 6:34 PM To: Chromium-dev Subject: [chromium-dev] Re: Getting Started with a New Project Excellent, I am almost there now. I have looked through several of the Chromium projects, but I cannot see how they are specifying additional libs. Which libs are needed to make this link? Thanks again

[chromium-dev] Re: Getting Started with a New Project

2009-07-26 Thread Kruncher
What you have suggested seems to have solved the header file issue, unfortunately I am now getting the following errors: 1c:\chromium\src\views\view.h(161) : error C2589: '(' : illegal token on right side of '::' 1c:\chromium\src\views\view.h(161) : error C2059: syntax error : '::'

[chromium-dev] Re: Getting Started with a New Project

2009-07-26 Thread Juan Baez
[mailto:chromium-...@googlegroups.com] On Behalf Of Kruncher Sent: Sunday, July 26, 2009 2:48 PM To: Chromium-dev Subject: [chromium-dev] Re: Getting Started with a New Project What you have suggested seems to have solved the header file issue, unfortunately I am now getting the following errors: 1c:\chromium

[chromium-dev] Re: Getting Started with a New Project

2009-07-25 Thread Juan Baez
Where you able to figure this out Kruncher? If so, could you provide me with some feedback as to how you resolved the problem? I am sort of trying to do something similar myself. On Jul 20, 2:41 am, Kruncher leaha...@gmail.com wrote: Yes, I tried adding thatprojectbut it didn't seem to help.

[chromium-dev] Re: Getting Started with a New Project

2009-07-25 Thread Juan Baez
After some research and SVN history browsing I found out that ChromiumCanvas is no more. Instead, use the gfx::Canvas class. Your header files should look somewhat like this (for the example to compile): #include app/gfx/canvas.h #include views/view.h #include views/controls/label.h #include

[chromium-dev] Re: Getting Started with a New Project

2009-07-20 Thread Kruncher
Yes, I tried adding that project but it didn't seem to help. On 19 July, 20:49, Thiago Farina thiago.far...@gmail.com wrote: Did you added the common project to your solution? On Jul 19, 12:40 pm, Kruncher leaha...@gmail.com wrote: For the purposes of practice I am trying to create an

[chromium-dev] Re: Getting Started with a New Project

2009-07-19 Thread Thiago Farina
Did you added the common project to your solution? On Jul 19, 12:40 pm, Kruncher leaha...@gmail.com wrote: For the purposes of practice I am trying to create an empty Win32 Exe project that uses the demonstration code from: http://dev.chromium.org/developers/design-documents/chromeviews To