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

Unified Diff: content/shell/shell_layout_tests_android.cc

Issue 23316003: [content shell] move browser process stuff into browser/ subdir (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 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
« no previous file with comments | « content/shell/shell_layout_tests_android.h ('k') | content/shell/shell_login_dialog.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/shell_layout_tests_android.cc
diff --git a/content/shell/shell_layout_tests_android.cc b/content/shell/shell_layout_tests_android.cc
deleted file mode 100644
index 68e8001bc5a62bdc891dbfd74dee374637c71c41..0000000000000000000000000000000000000000
--- a/content/shell/shell_layout_tests_android.cc
+++ /dev/null
@@ -1,93 +0,0 @@
-// Copyright 2013 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 "content/shell/shell_layout_tests_android.h"
-
-#include "base/android/fifo_utils.h"
-#include "base/android/jni_android.h"
-#include "base/android/jni_string.h"
-#include "base/command_line.h"
-#include "base/files/file_path.h"
-#include "base/message_loop/message_loop.h"
-#include "content/public/test/nested_message_pump_android.h"
-#include "content/shell/common/shell_switches.h"
-#include "jni/ShellLayoutTestUtils_jni.h"
-#include "url/gurl.h"
-
-namespace {
-
-// Path to search for when translating a layout test path to an URL.
-const char kAndroidLayoutTestPath[] =
- "/data/local/tmp/third_party/WebKit/LayoutTests/";
-
-// The base URL from which layout tests are being served on Android.
-const char kAndroidLayoutTestBase[] = "http://127.0.0.1:8000/all-tests/";
-
-base::FilePath GetTestFilesDirectory(JNIEnv* env) {
- ScopedJavaLocalRef<jstring> directory =
- content::Java_ShellLayoutTestUtils_getApplicationFilesDirectory(
- env, base::android::GetApplicationContext());
- return base::FilePath(ConvertJavaStringToUTF8(directory));
-}
-
-void EnsureCreateFIFO(const base::FilePath& path) {
- unlink(path.value().c_str());
- CHECK(base::android::CreateFIFO(path, 0666))
- << "Unable to create the Android's FIFO: " << path.value().c_str();
-}
-
-base::MessagePump* CreateMessagePumpForUI() {
- return new content::NestedMessagePumpAndroid();
-}
-
-} // namespace
-
-namespace content {
-
-bool GetTestUrlForAndroid(std::string& path_or_url, GURL* url) {
- if (path_or_url.find(kAndroidLayoutTestPath) == std::string::npos)
- return false;
-
- std::string test_location(kAndroidLayoutTestBase);
- test_location.append(path_or_url.substr(strlen(kAndroidLayoutTestPath)));
-
- *url = GURL(test_location);
- return true;
-}
-
-void EnsureInitializeForAndroidLayoutTests() {
- CHECK(CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree));
-
- JNIEnv* env = base::android::AttachCurrentThread();
- content::NestedMessagePumpAndroid::RegisterJni(env);
- content::RegisterNativesImpl(env);
-
- bool success = base::MessageLoop::InitMessagePumpForUIFactory(
- &CreateMessagePumpForUI);
- CHECK(success) << "Unable to initialize the message pump for Android.";
-
- // Android will need three FIFOs to communicate with the Blink test runner,
- // one for each of [stdout, stderr, stdin].
- base::FilePath files_dir(GetTestFilesDirectory(env));
-
- base::FilePath stdout_fifo(files_dir.Append(FILE_PATH_LITERAL("test.fifo")));
- EnsureCreateFIFO(stdout_fifo);
-
- base::FilePath stderr_fifo(
- files_dir.Append(FILE_PATH_LITERAL("stderr.fifo")));
- EnsureCreateFIFO(stderr_fifo);
-
- base::FilePath stdin_fifo(files_dir.Append(FILE_PATH_LITERAL("stdin.fifo")));
- EnsureCreateFIFO(stdin_fifo);
-
- // Redirecting stdout needs to happen before redirecting stdin, which needs
- // to happen before redirecting stderr.
- success = base::android::RedirectStream(stdout, stdout_fifo, "w") &&
- base::android::RedirectStream(stdin, stdin_fifo, "r") &&
- base::android::RedirectStream(stderr, stderr_fifo, "w");
-
- CHECK(success) << "Unable to initialize the Android FIFOs.";
-}
-
-} // namespace content
« no previous file with comments | « content/shell/shell_layout_tests_android.h ('k') | content/shell/shell_login_dialog.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698