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

Side by Side Diff: chrome/browser/tab_contents/tab_contents.h

Issue 251093: Modify extension request IPC messages to pass a ListValue instead of a string. (Closed)
Patch Set: notreached messages Created 11 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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_TAB_CONTENTS_TAB_CONTENTS_H_ 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 6 #define CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
7 7
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 9
10 #include <map> 10 #include <map>
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after
866 virtual void UpdateInspectorSettings(const std::string& raw_settings); 866 virtual void UpdateInspectorSettings(const std::string& raw_settings);
867 virtual void Close(RenderViewHost* render_view_host); 867 virtual void Close(RenderViewHost* render_view_host);
868 virtual void RequestMove(const gfx::Rect& new_bounds); 868 virtual void RequestMove(const gfx::Rect& new_bounds);
869 virtual void DidStartLoading(RenderViewHost* render_view_host); 869 virtual void DidStartLoading(RenderViewHost* render_view_host);
870 virtual void DidStopLoading(RenderViewHost* render_view_host); 870 virtual void DidStopLoading(RenderViewHost* render_view_host);
871 virtual void RequestOpenURL(const GURL& url, const GURL& referrer, 871 virtual void RequestOpenURL(const GURL& url, const GURL& referrer,
872 WindowOpenDisposition disposition); 872 WindowOpenDisposition disposition);
873 virtual void DomOperationResponse(const std::string& json_string, 873 virtual void DomOperationResponse(const std::string& json_string,
874 int automation_id); 874 int automation_id);
875 virtual void ProcessDOMUIMessage(const std::string& message, 875 virtual void ProcessDOMUIMessage(const std::string& message,
876 const std::string& content, 876 const Value* content,
877 int request_id, 877 int request_id,
878 bool has_callback); 878 bool has_callback);
879 virtual void ProcessExternalHostMessage(const std::string& message, 879 virtual void ProcessExternalHostMessage(const std::string& message,
880 const std::string& origin, 880 const std::string& origin,
881 const std::string& target); 881 const std::string& target);
882 virtual void RunFileChooser(bool multiple_files, 882 virtual void RunFileChooser(bool multiple_files,
883 const string16& title, 883 const string16& title,
884 const FilePath& default_file); 884 const FilePath& default_file);
885 virtual void RunJavaScriptMessage(const std::wstring& message, 885 virtual void RunJavaScriptMessage(const std::wstring& message,
886 const std::wstring& default_prompt, 886 const std::wstring& default_prompt,
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1159 1159
1160 // The time that we started to create the new tab page. 1160 // The time that we started to create the new tab page.
1161 base::TimeTicks new_tab_start_time_; 1161 base::TimeTicks new_tab_start_time_;
1162 1162
1163 // --------------------------------------------------------------------------- 1163 // ---------------------------------------------------------------------------
1164 1164
1165 DISALLOW_COPY_AND_ASSIGN(TabContents); 1165 DISALLOW_COPY_AND_ASSIGN(TabContents);
1166 }; 1166 };
1167 1167
1168 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_ 1168 #endif // CHROME_BROWSER_TAB_CONTENTS_TAB_CONTENTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/render_view_host_delegate.h ('k') | chrome/browser/tab_contents/tab_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698