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

Unified Diff: chrome/browser/ui/webui/options/multilanguage_options_webui_browsertest.h

Issue 1156473007: Enables the user to select multiple languages for spellchecking (UI) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments, added browsertest, fixed failures. Created 5 years, 6 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
Index: chrome/browser/ui/webui/options/multilanguage_options_webui_browsertest.h
diff --git a/chrome/browser/ui/webui/options/multilanguage_options_webui_browsertest.h b/chrome/browser/ui/webui/options/multilanguage_options_webui_browsertest.h
new file mode 100644
index 0000000000000000000000000000000000000000..bba04625f1de71f3d0c1b8346a27479916bd2958
--- /dev/null
+++ b/chrome/browser/ui/webui/options/multilanguage_options_webui_browsertest.h
@@ -0,0 +1,24 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
please use gerrit instead 2015/06/16 00:31:17 2015
Julius 2015/06/17 00:59:52 Done.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_MULTILANGUAGE_OPTIONS_WEBUI_BROWSERTEST_H_
+#define CHROME_BROWSER_UI_WEBUI_OPTIONS_MULTILANGUAGE_OPTIONS_WEBUI_BROWSERTEST_H_
+
+#include "chrome/test/base/web_ui_browser_test.h"
+
+// This is a helper class used by downloads_ui_browsertest.js.
+class MultilanguageOptionsWebUIBrowserTest : public WebUIBrowserTest {
+ public:
+ MultilanguageOptionsWebUIBrowserTest();
+ ~MultilanguageOptionsWebUIBrowserTest() override;
+ void SetUpOnMainThread() override;
please use gerrit instead 2015/06/16 00:31:17 Can be private.
Julius 2015/06/17 00:59:52 Done.
+
+ protected:
+ void SetUpCommandLine(base::CommandLine* command_line) override;
please use gerrit instead 2015/06/16 00:31:17 Can be private.
Julius 2015/06/17 00:59:53 Done.
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(MultilanguageOptionsWebUIBrowserTest);
+};
+
+#endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_MULTILANGUAGE_OPTIONS_WEBUI_BROWSERTEST_H_

Powered by Google App Engine
This is Rietveld 408576698