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

Side by Side Diff: chrome/renderer/searchbox/search_bouncer.h

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_RENDERER_SEARCHBOX_SEARCH_BOUNCER_H_ 5 #ifndef CHROME_RENDERER_SEARCHBOX_SEARCH_BOUNCER_H_
6 #define CHROME_RENDERER_SEARCHBOX_SEARCH_BOUNCER_H_ 6 #define CHROME_RENDERER_SEARCHBOX_SEARCH_BOUNCER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h"
11 #include "base/gtest_prod_util.h" 10 #include "base/gtest_prod_util.h"
11 #include "base/macros.h"
12 #include "content/public/renderer/render_process_observer.h" 12 #include "content/public/renderer/render_process_observer.h"
13 #include "url/gurl.h" 13 #include "url/gurl.h"
14 14
15 namespace IPC { 15 namespace IPC {
16 class Message; 16 class Message;
17 } 17 }
18 18
19 // SearchBouncer tracks a set of URLs which should be transferred back to the 19 // SearchBouncer tracks a set of URLs which should be transferred back to the
20 // browser process for potential reassignment to an Instant renderer process. 20 // browser process for potential reassignment to an Instant renderer process.
21 class SearchBouncer : public content::RenderProcessObserver { 21 class SearchBouncer : public content::RenderProcessObserver {
(...skipping 20 matching lines...) Expand all
42 bool OnControlMessageReceived(const IPC::Message& message) override; 42 bool OnControlMessageReceived(const IPC::Message& message) override;
43 43
44 // URLs to bounce back to the browser. 44 // URLs to bounce back to the browser.
45 std::vector<GURL> search_urls_; 45 std::vector<GURL> search_urls_;
46 GURL new_tab_page_url_; 46 GURL new_tab_page_url_;
47 47
48 DISALLOW_COPY_AND_ASSIGN(SearchBouncer); 48 DISALLOW_COPY_AND_ASSIGN(SearchBouncer);
49 }; 49 };
50 50
51 #endif // CHROME_RENDERER_SEARCHBOX_SEARCH_BOUNCER_H_ 51 #endif // CHROME_RENDERER_SEARCHBOX_SEARCH_BOUNCER_H_
OLDNEW
« no previous file with comments | « chrome/renderer/safe_browsing/threat_dom_details.cc ('k') | chrome/renderer/searchbox/searchbox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698