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

Unified Diff: components/version_ui/version_handler_helper.h

Issue 1486403002: Mojo-ifying chrome://version. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing comments Created 5 years 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
Index: components/version_ui/version_handler_helper.h
diff --git a/components/version_ui/version_handler_helper.h b/components/version_ui/version_handler_helper.h
index fbf57e79a8809c0107c8f4153d7d44b8a2548812..c11f4fa738b1ac2687dbc15c4face24e0e23a704 100644
--- a/components/version_ui/version_handler_helper.h
+++ b/components/version_ui/version_handler_helper.h
@@ -5,6 +5,8 @@
#ifndef COMPONENTS_VERSION_UI_VERSION_HANDLER_HELPER_H_
#define COMPONENTS_VERSION_UI_VERSION_HANDLER_HELPER_H_
+#include <vector>
+
#include "base/memory/scoped_ptr.h"
namespace base {
@@ -13,8 +15,12 @@ class Value;
namespace version_ui {
+scoped_ptr<std::vector<std::string>> GetVariations();
Evan Stade 2015/12/04 19:50:28 I think C++11 move semantics means it's ok to just
dpapad 2015/12/04 22:01:51 Done. Thanks, I really like this feature of C++ 11
+
+#if defined(OS_IOS)
// Returns the list of variations to be displayed on the chrome:://version page.
scoped_ptr<base::Value> GetVariationsList();
+#endif
} // namespace version_ui

Powered by Google App Engine
This is Rietveld 408576698