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

Side by Side Diff: components/omnibox/browser/omnibox_view.h

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 4 years, 11 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // This file defines the interface class OmniboxView. Each toolkit will 5 // This file defines the interface class OmniboxView. Each toolkit will
6 // implement the edit view differently, so that code is inherently platform 6 // implement the edit view differently, so that code is inherently platform
7 // specific. However, the OmniboxEditModel needs to do some communication with 7 // specific. However, the OmniboxEditModel needs to do some communication with
8 // the view. Since the model is shared between platforms, we need to define an 8 // the view. Since the model is shared between platforms, we need to define an
9 // interface that all view implementations will share. 9 // interface that all view implementations will share.
10 10
11 #ifndef COMPONENTS_OMNIBOX_BROWSER_OMNIBOX_VIEW_H_ 11 #ifndef COMPONENTS_OMNIBOX_BROWSER_OMNIBOX_VIEW_H_
12 #define COMPONENTS_OMNIBOX_BROWSER_OMNIBOX_VIEW_H_ 12 #define COMPONENTS_OMNIBOX_BROWSER_OMNIBOX_VIEW_H_
13 13
14 #include <stddef.h>
15
14 #include <string> 16 #include <string>
15 17
16 #include "base/gtest_prod_util.h" 18 #include "base/gtest_prod_util.h"
19 #include "base/macros.h"
17 #include "base/strings/string16.h" 20 #include "base/strings/string16.h"
18 #include "base/strings/string_util.h" 21 #include "base/strings/string_util.h"
19 #include "base/strings/utf_string_conversions.h" 22 #include "base/strings/utf_string_conversions.h"
20 #include "components/omnibox/browser/autocomplete_match.h" 23 #include "components/omnibox/browser/autocomplete_match.h"
21 #include "components/omnibox/browser/omnibox_edit_model.h" 24 #include "components/omnibox/browser/omnibox_edit_model.h"
22 #include "ui/base/window_open_disposition.h" 25 #include "ui/base/window_open_disposition.h"
23 #include "ui/gfx/native_widget_types.h" 26 #include "ui/gfx/native_widget_types.h"
24 27
25 class GURL; 28 class GURL;
26 class OmniboxClient; 29 class OmniboxClient;
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, ShowURL); 264 FRIEND_TEST_ALL_PREFIXES(InstantExtendedTest, ShowURL);
262 265
263 // |model_| can be NULL in tests. 266 // |model_| can be NULL in tests.
264 scoped_ptr<OmniboxEditModel> model_; 267 scoped_ptr<OmniboxEditModel> model_;
265 OmniboxEditController* controller_; 268 OmniboxEditController* controller_;
266 269
267 DISALLOW_COPY_AND_ASSIGN(OmniboxView); 270 DISALLOW_COPY_AND_ASSIGN(OmniboxView);
268 }; 271 };
269 272
270 #endif // COMPONENTS_OMNIBOX_BROWSER_OMNIBOX_VIEW_H_ 273 #endif // COMPONENTS_OMNIBOX_BROWSER_OMNIBOX_VIEW_H_
OLDNEW
« no previous file with comments | « components/omnibox/browser/omnibox_popup_view.h ('k') | components/omnibox/browser/omnibox_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698