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

Side by Side Diff: chrome/browser/ui/webui/web_ui_browsertest.h

Issue 7087014: Support automatic javascript test registry in gtest when creating WebUI tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_WEBUI_WEB_UI_BROWSERTEST_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_WEB_UI_BROWSERTEST_H_
6 #define CONTENT_BROWSER_WEBUI_WEB_UI_BROWSERTEST_H_ 6 #define CHROME_BROWSER_UI_WEBUI_WEB_UI_BROWSERTEST_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/file_path.h" 11 #include "base/file_path.h"
12 #include "chrome/browser/ui/webui/web_ui_test_handler.h" 12 #include "chrome/browser/ui/webui/web_ui_test_handler.h"
13 #include "chrome/test/in_process_browser_test.h" 13 #include "chrome/test/in_process_browser_test.h"
14 14
15 class Value; 15 class Value;
16 class WebUIMessageHandler; 16 class WebUIMessageHandler;
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 // Handles test framework messages. 91 // Handles test framework messages.
92 scoped_ptr<WebUITestHandler> test_handler_; 92 scoped_ptr<WebUITestHandler> test_handler_;
93 93
94 // Location of test data (currently test/data/webui). 94 // Location of test data (currently test/data/webui).
95 FilePath test_data_directory_; 95 FilePath test_data_directory_;
96 96
97 // User added libraries 97 // User added libraries
98 std::vector<FilePath> user_libraries; 98 std::vector<FilePath> user_libraries;
99 }; 99 };
100 100
101 #endif // CONTENT_BROWSER_WEBUI_WEB_UI_BROWSERTEST_H_ 101 #endif // CHROME_BROWSER_UI_WEBUI_WEB_UI_BROWSERTEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698