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

Side by Side Diff: content/browser/in_process_webkit/dom_storage_uitest.cc

Issue 8277018: Move content_switches to content\public\common. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 #include "base/file_path.h" 5 #include "base/file_path.h"
6 #include "base/file_util.h" 6 #include "base/file_util.h"
7 #include "base/test/test_timeouts.h" 7 #include "base/test/test_timeouts.h"
8 #include "chrome/test/automation/tab_proxy.h" 8 #include "chrome/test/automation/tab_proxy.h"
9 #include "chrome/test/base/ui_test_utils.h" 9 #include "chrome/test/base/ui_test_utils.h"
10 #include "chrome/test/ui/ui_layout_test.h" 10 #include "chrome/test/ui/ui_layout_test.h"
11 #include "content/common/content_switches.h" 11 #include "content/public/common/content_switches.h"
12 #include "net/base/net_util.h" 12 #include "net/base/net_util.h"
13 13
14 static const char* kRootFiles[] = { 14 static const char* kRootFiles[] = {
15 "clear.html", 15 "clear.html",
16 // "complex-keys.html", // Output too big for a cookie. crbug.com/33472 16 // "complex-keys.html", // Output too big for a cookie. crbug.com/33472
17 // "complex-values.html", // crbug.com/33472 17 // "complex-values.html", // crbug.com/33472
18 "quota.html", 18 "quota.html",
19 "remove-item.html", 19 "remove-item.html",
20 "window-attributes-exist.html", 20 "window-attributes-exist.html",
21 NULL 21 NULL
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 NavigateToURL(GURL("javascript:set()")); 182 NavigateToURL(GURL("javascript:set()"));
183 QuitBrowser(); 183 QuitBrowser();
184 EXPECT_FALSE(StorageDirIsEmpty()); 184 EXPECT_FALSE(StorageDirIsEmpty());
185 185
186 LaunchBrowserAndServer(); 186 LaunchBrowserAndServer();
187 NavigateToURL(TestUrl()); 187 NavigateToURL(TestUrl());
188 NavigateToURL(GURL("javascript:clear()")); 188 NavigateToURL(GURL("javascript:clear()"));
189 QuitBrowser(); 189 QuitBrowser();
190 EXPECT_TRUE(StorageDirIsEmpty()); 190 EXPECT_TRUE(StorageDirIsEmpty());
191 } 191 }
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_process_host.cc ('k') | content/browser/in_process_webkit/indexed_db_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698