Hi,
Thanks a lot for the guidance, it helped me a lot:)
So, I was trying to remove certain features like FEATURE_TOOLBAR & FEATURE_LOCATIONBAR , and it looked fine. But when I am trying to remove FEATURE_TABSTRIP, attached is the screenshot I am getting. My code changes are as follows
diff --git a/src/chrome/browser/ui/browser.cc b/src/chrome/browser/ui/browser.cc
index bd6218a..b061a62 100644
--- a/src/chrome/browser/ui/browser.cc
+++ b/src/chrome/browser/ui/browser.cc
@@ -1262,8 +1262,8 @@ bool Browser::SupportsWindowFeatureImpl(WindowFeature feat
if (type() != TYPE_NORMAL)
features |= FEATURE_TITLEBAR;
- if (type() == TYPE_NORMAL)
- features |= FEATURE_TABSTRIP;
+ //if (type() == TYPE_NORMAL)
+ // features |= FEATURE_TABSTRIP;
I just want to get chrome inside a top level window having minimize,maximize,close button at the top right.
So, my questions is am i doing everything right or there are some other changes too I need to do?
Thanks,
Rahaman