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

Side by Side Diff: content/renderer/external_popup_menu_browsertest.cc

Issue 16408017: Use a direct include of utf_string_conversions.h in content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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 #include "base/utf_string_conversions.h" 5 #include "base/strings/utf_string_conversions.h"
6 #include "content/common/view_messages.h" 6 #include "content/common/view_messages.h"
7 #include "content/public/test/render_view_test.h" 7 #include "content/public/test/render_view_test.h"
8 #include "content/renderer/render_view_impl.h" 8 #include "content/renderer/render_view_impl.h"
9 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
10 #include "third_party/WebKit/public/platform/WebSize.h" 11 #include "third_party/WebKit/public/platform/WebSize.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
12 12
13 // Tests for the external select popup menu (Mac specific). 13 // Tests for the external select popup menu (Mac specific).
14 14
15 namespace content { 15 namespace content {
16 namespace { 16 namespace {
17 17
18 const char* const kSelectID = "mySelect"; 18 const char* const kSelectID = "mySelect";
19 const char* const kEmptySelectID = "myEmptySelect"; 19 const char* const kEmptySelectID = "myEmptySelect";
20 20
21 } // namespace 21 } // namespace
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 139
140 // Select something, it causes the select to be removed from the page. 140 // Select something, it causes the select to be removed from the page.
141 view()->OnSelectPopupMenuItem(0); 141 view()->OnSelectPopupMenuItem(0);
142 142
143 // Just to check the soundness of the test, call SimulateElementClick again. 143 // Just to check the soundness of the test, call SimulateElementClick again.
144 // It should return false as the select has been removed. 144 // It should return false as the select has been removed.
145 EXPECT_FALSE(SimulateElementClick(kSelectID)); 145 EXPECT_FALSE(SimulateElementClick(kSelectID));
146 } 146 }
147 147
148 } // namespace content 148 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/dom_storage/webstoragearea_impl.cc ('k') | content/renderer/hyphenator/hyphenator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698