Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Unified Diff: chrome/browser/ui/intents/web_intent_picker.cc

Issue 10824102: Web Intents Picker: Set minimum size of the inline disposition to 1x1 (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/intents/web_intent_picker.cc
diff --git a/chrome/browser/ui/intents/web_intent_picker.cc b/chrome/browser/ui/intents/web_intent_picker.cc
index e5edd883e69a05fda3420cf8aa88774b43969ff8..f9b3302870fcb83d5917378faa4c1b6169c112b0 100644
--- a/chrome/browser/ui/intents/web_intent_picker.cc
+++ b/chrome/browser/ui/intents/web_intent_picker.cc
@@ -21,7 +21,7 @@ const int kMaxInlineDispositionHeight = 900;
// static
gfx::Size WebIntentPicker::GetMinInlineDispositionSize() {
- return gfx::Size(0, 0);
+ return gfx::Size(1, 1);
}
// static
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698