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

Side by Side Diff: chrome/browser/instant/instant_loader.h

Issue 6310003: Support specified JSON as argument to setSuggestions(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome
Patch Set: Address comments Created 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/instant/instant_browsertest.cc ('k') | chrome/renderer/searchbox_extension.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 CHROME_BROWSER_INSTANT_INSTANT_LOADER_H_ 5 #ifndef CHROME_BROWSER_INSTANT_INSTANT_LOADER_H_
6 #define CHROME_BROWSER_INSTANT_INSTANT_LOADER_H_ 6 #define CHROME_BROWSER_INSTANT_INSTANT_LOADER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/scoped_ptr.h" 10 #include "base/scoped_ptr.h"
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 bool is_showing_instant() const { return template_url_id_ != 0; } 87 bool is_showing_instant() const { return template_url_id_ != 0; }
88 88
89 // If we're showing instant this returns non-zero. 89 // If we're showing instant this returns non-zero.
90 TemplateURLID template_url_id() const { return template_url_id_; } 90 TemplateURLID template_url_id() const { return template_url_id_; }
91 91
92 // See description above field. 92 // See description above field.
93 const string16& user_text() const { return user_text_; } 93 const string16& user_text() const { return user_text_; }
94 94
95 private: 95 private:
96 friend class InstantLoaderManagerTest; 96 friend class InstantLoaderManagerTest;
97 friend class InstantTest;
97 class FrameLoadObserver; 98 class FrameLoadObserver;
98 class PaintObserverImpl; 99 class PaintObserverImpl;
99 class TabContentsDelegateImpl; 100 class TabContentsDelegateImpl;
100 101
101 // Invoked when the page wants to update the suggested text. If |user_text_| 102 // Invoked when the page wants to update the suggested text. If |user_text_|
102 // starts with |suggested_text|, then the delegate is notified of the change, 103 // starts with |suggested_text|, then the delegate is notified of the change,
103 // which results in updating the omnibox. 104 // which results in updating the omnibox.
104 void SetCompleteSuggestedText(const string16& suggested_text); 105 void SetCompleteSuggestedText(const string16& suggested_text);
105 106
106 // Invoked when the page paints. 107 // Invoked when the page paints.
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 // Used to get notifications about renderers coming and going. 184 // Used to get notifications about renderers coming and going.
184 NotificationRegistrar registrar_; 185 NotificationRegistrar registrar_;
185 186
186 // Last value of verbatim passed to |Update|. 187 // Last value of verbatim passed to |Update|.
187 bool verbatim_; 188 bool verbatim_;
188 189
189 DISALLOW_COPY_AND_ASSIGN(InstantLoader); 190 DISALLOW_COPY_AND_ASSIGN(InstantLoader);
190 }; 191 };
191 192
192 #endif // CHROME_BROWSER_INSTANT_INSTANT_LOADER_H_ 193 #endif // CHROME_BROWSER_INSTANT_INSTANT_LOADER_H_
OLDNEW
« no previous file with comments | « chrome/browser/instant/instant_browsertest.cc ('k') | chrome/renderer/searchbox_extension.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698