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

Unified Diff: chrome/browser/ui/webui/options/options_browsertest.cc

Issue 7237030: Added options browser_tests using the generator and js handler framework. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/settings/options/, moved .cc into options dir, addressed JS readability. Created 9 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
Index: chrome/browser/ui/webui/options/options_browsertest.cc
diff --git a/chrome/browser/ui/webui/options/options_browsertest.cc b/chrome/browser/ui/webui/options/options_browsertest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..8c103d704ccac7d5735a0abddc41cd407cabe197
--- /dev/null
+++ b/chrome/browser/ui/webui/options/options_browsertest.cc
@@ -0,0 +1,16 @@
+// Copyright (c) 2011 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/ui/webui/web_ui_browsertest.h"
+#include "googleurl/src/gurl.h"
James Hawkins 2011/07/08 00:03:33 Unused: remove.
Sheridan Rawlins 2011/07/08 22:45:49 These are moot with full generation (no need for .
+#include "testing/gtest/include/gtest/gtest.h"
James Hawkins 2011/07/08 00:03:33 Unused: remove.
+
+// crbug.com/88104 - v8_shell#host doesn't build when host=="arm".
+#if !defined(ARCH_CPU_ARM_FAMILY)
+
+typedef WebUIBrowserTest SettingsWebUITest;
+
+#include "chrome/test/data/webui/options-inl.h"
+
+#endif // !defined(ARCH_CPU_ARM_FAMILY)

Powered by Google App Engine
This is Rietveld 408576698