Index: chrome/browser/android/shortcut_info.cc |
diff --git a/chrome/browser/android/shortcut_info.cc b/chrome/browser/android/shortcut_info.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..92607bfef94742f0a56bc9f225c73d9188c025ac |
--- /dev/null |
+++ b/chrome/browser/android/shortcut_info.cc |
@@ -0,0 +1,52 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "chrome/browser/android/shortcut_info.h" |
+ |
+#include "base/strings/string16.h" |
+#include "content/public/common/manifest.h" |
+#include "third_party/WebKit/public/platform/WebScreenOrientationLockType.h" |
+#include "url/gurl.h" |
mlamouri (slow - plz ping)
2015/02/03 17:40:24
You probably don't need those #include, they are i
gone
2015/02/03 19:48:23
Done.
|
+ |
+ShortcutInfo::ShortcutInfo() |
+ : display(content::Manifest::DISPLAY_MODE_BROWSER), |
+ orientation(blink::WebScreenOrientationLockDefault) { |
+} |
+ |
+ShortcutInfo::ShortcutInfo(const GURL& shortcut_url) |
+ : url(shortcut_url), |
+ display(content::Manifest::DISPLAY_MODE_BROWSER), |
+ orientation(blink::WebScreenOrientationLockDefault) { |
+} |
+ |
+void ShortcutInfo::UpdateFromManifest(const content::Manifest& manifest) { |
+ if (!manifest.short_name.is_null()) |
+ title = manifest.short_name.string(); |
+ else if (!manifest.name.is_null()) |
+ title = manifest.name.string(); |
+ |
+ // Set the url based on the manifest value, if any. |
+ if (manifest.start_url.is_valid()) |
+ url = manifest.start_url; |
+ |
+ // Set the display based on the manifest value, if any. |
+ if (manifest.display != content::Manifest::DISPLAY_MODE_UNSPECIFIED) |
+ display = manifest.display; |
+ |
+ // 'fullscreen' and 'minimal-ui' are not yet supported, fallback to the right |
+ // mode in those cases. |
+ if (manifest.display == content::Manifest::DISPLAY_MODE_FULLSCREEN) |
+ display = content::Manifest::DISPLAY_MODE_STANDALONE; |
+ if (manifest.display == content::Manifest::DISPLAY_MODE_MINIMAL_UI) |
+ display = content::Manifest::DISPLAY_MODE_BROWSER; |
+ |
+ // Set the orientation based on the manifest value, if any. |
+ if (manifest.orientation != blink::WebScreenOrientationLockDefault) { |
+ // Ignore the orientation if the display mode is different from |
+ // 'standalone'. |
+ // TODO(mlamouri): send a message to the developer console about this. |
+ if (display == content::Manifest::DISPLAY_MODE_STANDALONE) |
+ orientation = manifest.orientation; |
+ } |
+} |